Skip to content

Commit e160a14

Browse files
committed
lowered first character of help descriptions to be consistent with --help flag description added by argparse
1 parent 717e203 commit e160a14

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

chmutil/checkchmjob.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,32 @@ def _parse_arguments(desc, args):
3434
help_formatter = argparse.RawDescriptionHelpFormatter
3535
parser = argparse.ArgumentParser(description=desc,
3636
formatter_class=help_formatter)
37-
parser.add_argument("jobdir", help='Directory containing ' +
37+
parser.add_argument("jobdir", help='directory containing ' +
3838
CHMJobCreator.CONFIG_FILE_NAME +
3939
' file')
4040

4141
bmerge = CHMJobCreator.MERGE_CONFIG_BATCHED_TASKS_FILE_NAME
4242
batchchm = CHMJobCreator.CONFIG_BATCHED_TASKS_FILE_NAME
4343
parser.add_argument(SUBMIT_FLAG, action="store_true",
44-
help='Rewrite {batchchm}'
44+
help='rewrite {batchchm}'
4545
'and {batchmerge} files with any'
4646
'jobs that need to still be'
4747
'processed. WARNING: Do NOT add this'
48-
'flag if tasks are still running,'
49-
'since key configuration files '
48+
' flag if tasks are still running,'
49+
' since key configuration files '
5050
'will be '
5151
'rewritten.'.format(batchchm=batchchm,
5252
batchmerge=bmerge))
5353

5454
parser.add_argument(DETAILED_FLAG, action="store_true",
55-
help='Output detailed summary '
55+
help='output detailed summary '
5656
'information for job')
5757
parser.add_argument("--skipchm", action="store_true",
58-
help='Skips examination of CHM jobs. This will'
59-
'mean stats on CHM jobs will be invalid')
58+
help='skips examination of CHM jobs. This will'
59+
' mean stats on CHM jobs will be invalid')
6060
parser.add_argument("--log", dest="loglevel", choices=['DEBUG',
6161
'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
62-
help="Set the logging level (default WARNING)",
62+
help="set the logging level (default WARNING)",
6363
default='WARNING')
6464
parser.add_argument('--version', action='version',
6565
version=('%(prog)s ' + chmutil.__version__))

0 commit comments

Comments
 (0)