fix typos in acprep

This commit is contained in:
Johann Klähn 2013-04-13 13:10:56 +02:00
parent 6bef247759
commit 90ced87004

4
acprep
View file

@ -354,7 +354,7 @@ class PrepareBuild(CommandLineApp):
self.log.error("Execution failed: " + string.join(args, ' '))
sys.exit(1)
except OSError, e:
self.log.error("Execution failed:", e)
self.log.error("Execution failed: " + e)
sys.exit(1)
def get_stdout(self, *args):
@ -373,7 +373,7 @@ class PrepareBuild(CommandLineApp):
sys.exit(1)
return stdout[:-1]
except OSError, e:
self.log.error("Execution failed:", e)
self.log.error("Execution failed:" + e)
sys.exit(1)
def isnewer(self, file1, file2):