Generalize help text for compile/no-compile flags

This commit is contained in:
Dustin Ingram 2017-04-06 13:27:46 -04:00
parent 4749845a51
commit 13373c37cf
No known key found for this signature in database
GPG Key ID: 93D2B8D4930A5E39
2 changed files with 3 additions and 2 deletions

1
news/4316.bugfix Normal file
View File

@ -0,0 +1 @@
Generalize help text for ``compile``/``no-compile` flags.

View File

@ -143,14 +143,14 @@ class InstallCommand(RequirementCommand):
action="store_true",
dest="compile",
default=True,
help="Compile py files to pyc",
help="Compile Python source files to bytecode",
)
cmd_opts.add_option(
"--no-compile",
action="store_false",
dest="compile",
help="Do not compile py files to pyc",
help="Do not compile Python source files to bytecode",
)
cmd_opts.add_option(cmdoptions.no_binary())