From a5cc807dcd475acfa35a20ec9a02ef3c4b10a573 Mon Sep 17 00:00:00 2001 From: James Durand Date: Mon, 29 Apr 2013 11:18:05 -0500 Subject: [PATCH] Fixed build error handling using invalid Python syntax. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ce634d017..dd39e9470 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ def run_command(command, cwd='.', verbose=True): line = line.rstrip() print(line) if process.returncode: - self.logger.error("failed: %d", process.returncode) + print "failed: {0}".format(process.returncode) return False return True