Fix missing space with help for -m compileall -o (GH-27591)

This commit is contained in:
Daniel Hahler 2021-09-18 00:28:09 +02:00 committed by GitHub
parent aca0e08c5d
commit 74cc2453ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -367,9 +367,9 @@ def main():
'environment variable is set, and ' 'environment variable is set, and '
'"timestamp" otherwise.')) '"timestamp" otherwise.'))
parser.add_argument('-o', action='append', type=int, dest='opt_levels', parser.add_argument('-o', action='append', type=int, dest='opt_levels',
help=('Optimization levels to run compilation with.' help=('Optimization levels to run compilation with. '
'Default is -1 which uses optimization level of' 'Default is -1 which uses the optimization level '
'Python interpreter itself (specified by -O).')) 'of the Python interpreter itself (see -O).'))
parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest', parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest',
help='Ignore symlinks pointing outsite of the DIR') help='Ignore symlinks pointing outsite of the DIR')
parser.add_argument('--hardlink-dupes', action='store_true', parser.add_argument('--hardlink-dupes', action='store_true',