Fixed build error handling using invalid Python syntax.
This commit is contained in:
parent
784e23668b
commit
a5cc807dcd
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue