Skip to content

Commit

Permalink
Fix fahctl usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoffland committed Aug 19, 2024
1 parent 6d889a4 commit d0033ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Folding@home Client Changelog

## v8.4.4
- Acquire client DB lock on startup. #269
- Added ``fahctl`` command line client control script. #119

## v8.4.3
- Start Linux client after DNS service. (Marcos Mello)
Expand Down
4 changes: 2 additions & 2 deletions scripts/fahctl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
'Folding@home v8 Client command line control'

import sys
import argparse
Expand All @@ -19,8 +20,7 @@ Examples:
fahctl pause
'''

parser = argparse.ArgumentParser(
'Folding@home v8 Client command line control',
parser = argparse.ArgumentParser(description = __doc__,
formatter_class = argparse.RawDescriptionHelpFormatter, epilog = epilog)

parser.add_argument('command', choices = ['fold', 'pause', 'finish', 'state'],
Expand Down

0 comments on commit d0033ef

Please sign in to comment.