Fix double-invocation bug
authorAaron Bentley <abentley@panoramicfeedback.com>
Tue, 5 Sep 2006 17:15:06 +0000 (13:15 -0400)
committerAaron Bentley <abentley@panoramicfeedback.com>
Tue, 5 Sep 2006 17:15:06 +0000 (13:15 -0400)
libbe/rcs.py

index 1c12068409a21f28abab9d566aafc7437991a983..c06305f2fcff25ab311a9ec12fc7d6d2f3aa0045 100644 (file)
@@ -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: