Skip to content

Commit

Permalink
Parentheses are for Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Sep 27, 2011
1 parent 95c4dcb commit 04b90f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ def run(self):
if file != '__init__.py' and file.endswith('.py') :
warns += flakes.checkPath(os.path.join(root, file))
if warns > 0:
print ("Audit finished with total %d warnings." % warns)
print "Audit finished with total %d warnings." % warns
else:
print ("No problems found in sourcecode.")
print "No problems found in sourcecode."

setup(
name='Flask',
Expand Down

0 comments on commit 04b90f5

Please sign in to comment.