From ff2e28d0d9723ccd0e9dd635447b6d889cc9f597 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 9 Apr 2010 19:46:14 -0700 Subject: Apply the 2to3 print function transform Signed-off-by: Chris Larson --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index a0f351d70..24fe28b19 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ class Build(build): make = os.environ.get('MAKE') or 'make' ret = os.system('%s %s' % (make, doctype)) if ret != 0: - print "ERROR: Unable to generate html documentation." + print("ERROR: Unable to generate html documentation.") sys.exit(ret) os.chdir(origpath) -- cgit 1.2.3-korg