From c47273486de9ec62dea5838d3e5966652fe683ea Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 17 Nov 2009 08:48:14 -0500 Subject: [PATCH] "CommandStderr" -> "CommandError" in VCS._u_invoke() Corrects a mistake from using string replace to move output,error -> stdout,stderr a few commits ago. --- libbe/vcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.26.2