summaryrefslogtreecommitdiff
path: root/morphlib/execute.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2011-11-15 16:09:23 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2011-11-15 16:09:23 +0000
commit039accea102dd8e61471e00f0e58415c3449b76f (patch)
tree7eae2a694df03c71f00cd4b1844f1bff4bd0900a /morphlib/execute.py
parent0d373afc17a0288342f592741d0221fef273e07f (diff)
downloadmorph-039accea102dd8e61471e00f0e58415c3449b76f.tar.gz
Fix broken string escape
Diffstat (limited to 'morphlib/execute.py')
-rw-r--r--morphlib/execute.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/execute.py b/morphlib/execute.py
index f35e4a70..cb49d866 100644
--- a/morphlib/execute.py
+++ b/morphlib/execute.py
@@ -26,7 +26,7 @@ class CommandFailure(cliapp.AppException):
def __init__(self, command, stderr):
cliapp.AppException.__init__(self,
- 'Command failed: %s\Output from command:\n%s' %
+ 'Command failed: %s\nOutput from command:\n%s' %
(command, stderr))