aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
Diffstat (limited to 'libbe')
-rw-r--r--libbe/rcs.py1
1 files changed, 0 insertions, 1 deletions
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: