Skip to content

Commit 74cc245

Browse files
authored
Fix missing space with help for -m compileall -o (GH-27591)
1 parent aca0e08 commit 74cc245

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/compileall.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,9 @@ def main():
367367
'environment variable is set, and '
368368
'"timestamp" otherwise.'))
369369
parser.add_argument('-o', action='append', type=int, dest='opt_levels',
370-
help=('Optimization levels to run compilation with.'
371-
'Default is -1 which uses optimization level of'
372-
'Python interpreter itself (specified by -O).'))
370+
help=('Optimization levels to run compilation with. '
371+
'Default is -1 which uses the optimization level '
372+
'of the Python interpreter itself (see -O).'))
373373
parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest',
374374
help='Ignore symlinks pointing outsite of the DIR')
375375
parser.add_argument('--hardlink-dupes', action='store_true',

0 commit comments

Comments
 (0)