From 04b90f5ad47d04bace76c18f634d54b0da4b91ce Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Tue, 27 Sep 2011 14:36:06 +0200 Subject: [PATCH] Parentheses are for Python3 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 64b24533..14597afe 100644 --- a/setup.py +++ b/setup.py @@ -71,9 +71,9 @@ class run_audit(Command): 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',