diff options
author | Johann Klähn <kljohann@gmail.com> | 2013-04-13 13:10:56 +0200 |
---|---|---|
committer | Johann Klähn <kljohann@gmail.com> | 2013-04-13 13:10:56 +0200 |
commit | 90ced87004ed778a94326e8902c0f7c2a270f4de (patch) | |
tree | b89491c0b945a3a12369ef6fce940cde2ae0f2dc /acprep | |
parent | 6bef247759acbdc026624e78d0fd78297bc79501 (diff) | |
download | fork-ledger-90ced87004ed778a94326e8902c0f7c2a270f4de.tar.gz fork-ledger-90ced87004ed778a94326e8902c0f7c2a270f4de.tar.bz2 fork-ledger-90ced87004ed778a94326e8902c0f7c2a270f4de.zip |
fix typos in acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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): |