Skip to content

Commit

Permalink
Fix missing space with help for -m compileall -o (GH-27591)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Sep 17, 2021
1 parent aca0e08 commit 74cc245
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/compileall.py
Expand Up @@ -367,9 +367,9 @@ def main():
'environment variable is set, and '
'"timestamp" otherwise.'))
parser.add_argument('-o', action='append', type=int, dest='opt_levels',
help=('Optimization levels to run compilation with.'
'Default is -1 which uses optimization level of'
'Python interpreter itself (specified by -O).'))
help=('Optimization levels to run compilation with. '
'Default is -1 which uses the optimization level '
'of the Python interpreter itself (see -O).'))
parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest',
help='Ignore symlinks pointing outsite of the DIR')
parser.add_argument('--hardlink-dupes', action='store_true',
Expand Down

0 comments on commit 74cc245

Please sign in to comment.