Commit 2b4ae2ab authored by Jason Madden's avatar Jason Madden

pep8 [skip ci]

parent 0c9df95a
...@@ -320,12 +320,14 @@ else: ...@@ -320,12 +320,14 @@ else:
# If we are running info / help commands, or we're being imported by # If we are running info / help commands, or we're being imported by
# tools like pyroma, we don't need to build anything # tools like pyroma, we don't need to build anything
if (len(sys.argv) >= 2 and ('--help' in sys.argv[1:] or if ((len(sys.argv) >= 2
sys.argv[1] in ('--help-commands', and ('--help' in sys.argv[1:]
'egg_info', or sys.argv[1] in ('--help-commands',
'--version', 'egg_info',
'clean', '--version',
'--long-description'))) or __name__ != '__main__': 'clean',
'--long-description')))
or __name__ != '__main__'):
ext_modules = [] ext_modules = []
include_package_data = PYPY include_package_data = PYPY
run_make = False run_make = False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment