aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bzr.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-11-20 10:48:36 -0500
committerW. Trevor King <wking@drexel.edu>2009-11-20 10:48:36 -0500
commit0d0dbf9587cb65b08365094d23818da2c8823110 (patch)
tree0b68ddbfbe93f088c443ef970f4da4a8a1610391 /libbe/bzr.py
parent401411e519f1b4e6206e9020902536a54ca8750b (diff)
downloadbugseverywhere-0d0dbf9587cb65b08365094d23818da2c8823110.tar.gz
Broke subprocess handling out into its own submodule libbe.subproc.
Diffstat (limited to 'libbe/bzr.py')
-rw-r--r--libbe/bzr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bzr.py b/libbe/bzr.py
index 2cf1cba..281493d 100644
--- a/libbe/bzr.py
+++ b/libbe/bzr.py
@@ -90,7 +90,7 @@ class Bzr(vcs.VCS):
if self._u_any_in_string(strings, error) == True:
raise vcs.EmptyCommit()
else:
- raise vcs.CommandError(args, status, stdout="", stderr=error)
+ raise vcs.CommandError(args, status, stderr=error)
revision = None
revline = re.compile("Committed revision (.*)[.]")
match = revline.search(error)