aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/util/subproc.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-19 09:10:25 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-19 09:10:25 -0500
commit4ad9a6d7b17db9abe7d4c11477df1df7c6eac5e5 (patch)
treeab2fe04f3e415b9bc9a8bb349e7accd3f232da1a /libbe/util/subproc.py
parent1a066af44dd6f5b3f0a3a7abe79f4f9baf7b74b3 (diff)
parent023bfa3195b3e45d1d12a6890f94e9c28b255f87 (diff)
downloadbugseverywhere-4ad9a6d7b17db9abe7d4c11477df1df7c6eac5e5.tar.gz
Merged be.faster-diff branch, fixing #bea/ed5#.
Diffstat (limited to 'libbe/util/subproc.py')
-rw-r--r--libbe/util/subproc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/util/subproc.py b/libbe/util/subproc.py
index 6ca1e80..b02b8e8 100644
--- a/libbe/util/subproc.py
+++ b/libbe/util/subproc.py
@@ -36,7 +36,7 @@ if _POSIX == True:
class CommandError(Exception):
def __init__(self, command, status, stdout=None, stderr=None):
strerror = ['Command failed (%d):\n %s\n' % (status, stderr),
- 'while executing\n %s' % command]
+ 'while executing\n %s' % str(command)]
Exception.__init__(self, '\n'.join(strerror))
self.command = command
self.status = status