diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-09-05 13:15:06 -0400 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-09-05 13:15:06 -0400 |
commit | 6c6532dcae518aa6b137d2b45cd30c887232fbde (patch) | |
tree | 92c5806d2cab2a827bdc3c5966d08673e2f4448b /libbe | |
parent | 99993f498f2130b912f3418a72812d2bbacab68e (diff) | |
download | bugseverywhere-6c6532dcae518aa6b137d2b45cd30c887232fbde.tar.gz |
Fix double-invocation bug
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/rcs.py | 1 |
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: |