From d0033ef417f8c212d82555ac4fff1156286029a1 Mon Sep 17 00:00:00 2001 From: Joseph Coffland Date: Tue, 20 Aug 2024 00:41:58 +0300 Subject: [PATCH] Fix fahctl usage --- CHANGELOG.md | 1 + scripts/fahctl | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f1276..4e2aac8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/scripts/fahctl b/scripts/fahctl index fa82b86..27ee9aa 100755 --- a/scripts/fahctl +++ b/scripts/fahctl @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +'Folding@home v8 Client command line control' import sys import argparse @@ -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'],