forked from orbit-oss/flask
Parentheses are for Python3
This commit is contained in:
parent
95c4dcb4d5
commit
04b90f5ad4
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -71,9 +71,9 @@ class run_audit(Command):
|
||||||
if file != '__init__.py' and file.endswith('.py') :
|
if file != '__init__.py' and file.endswith('.py') :
|
||||||
warns += flakes.checkPath(os.path.join(root, file))
|
warns += flakes.checkPath(os.path.join(root, file))
|
||||||
if warns > 0:
|
if warns > 0:
|
||||||
print ("Audit finished with total %d warnings." % warns)
|
print "Audit finished with total %d warnings." % warns
|
||||||
else:
|
else:
|
||||||
print ("No problems found in sourcecode.")
|
print "No problems found in sourcecode."
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Flask',
|
name='Flask',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue