aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/vcs.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/vcs.py')
-rw-r--r--libbe/vcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/vcs.py b/libbe/vcs.py
index 45bc59e..d04db28 100644
--- a/libbe/vcs.py
+++ b/libbe/vcs.py
@@ -485,7 +485,7 @@ class VCS(object):
if self.verboseInvoke == True:
print >> sys.stderr, "%d\n%s%s" % (status, stdout, stderr)
if status not in expect:
- raise CommandStderr(args, status, stdout, stderr)
+ raise CommandError(args, status, stdout, stderr)
return status, stdout, stderr
def _u_invoke_client(self, *args, **kwargs):
directory = kwargs.get('directory',None)