From 6c6532dcae518aa6b137d2b45cd30c887232fbde Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Tue, 5 Sep 2006 13:15:06 -0400 Subject: Fix double-invocation bug --- libbe/rcs.py | 1 - 1 file changed, 1 deletion(-) (limited to 'libbe') diff --git a/libbe/rcs.py b/libbe/rcs.py index 1c12068..c06305f 100644 --- a/libbe/rcs.py +++ b/libbe/rcs.py @@ -47,7 +47,6 @@ class CommandError(Exception): self.status = status def invoke(args, expect=(0,), cwd=None): - q = Popen(args, stdout=PIPE, stderr=PIPE, cwd=cwd) if sys.platform != "win32": q = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=cwd) else: -- cgit