aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2006-09-05 13:15:06 -0400
committerAaron Bentley <abentley@panoramicfeedback.com>2006-09-05 13:15:06 -0400
commit6c6532dcae518aa6b137d2b45cd30c887232fbde (patch)
tree92c5806d2cab2a827bdc3c5966d08673e2f4448b /libbe
parent99993f498f2130b912f3418a72812d2bbacab68e (diff)
downloadbugseverywhere-6c6532dcae518aa6b137d2b45cd30c887232fbde.tar.gz
Fix double-invocation bug
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: