diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-03 03:23:26 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-03 03:23:26 -0500 |
commit | 63c14c76f8976864b90263da26eaa09f531e61b8 (patch) | |
tree | b17c75f3c9821eee7a3166209cbea3e14db6b05f | |
parent | 93847bd1cad5f5a058a18e06630ab0c22099677f (diff) | |
download | external_python_setuptools-63c14c76f8976864b90263da26eaa09f531e61b8.tar.gz external_python_setuptools-63c14c76f8976864b90263da26eaa09f531e61b8.tar.bz2 external_python_setuptools-63c14c76f8976864b90263da26eaa09f531e61b8.zip |
Rewrite comment
-rw-r--r-- | setuptools/tests/test_easy_install.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index befbd2fa..f93dbd4c 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -457,9 +457,8 @@ class TestScriptHeader: assert header == '#!/usr/bin/env %s\n' % exe with contexts.quiet() as (stdout, stderr): - - # Ensure we generate what is basically a broken shebang line - # when there's options, with a warning emitted + # When options are included, generate a broken shebang line + # with a warning emitted candidate = get_script_header('#!/usr/bin/python -x', executable=exe) assert candidate == '#!%s -x\n' % exe |