summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep4
1 files changed, 2 insertions, 2 deletions
diff --git a/acprep b/acprep
index 5cfd6710..ff00e1e1 100755
--- a/acprep
+++ b/acprep
@@ -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):