mercurial/util.py
changeset 4625 eaf87cd19337
parent 4540 133a52d70958
child 4635 63b9d2deed48
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -161,7 +161,7 @@ def cachefunc(func):
 
 def pipefilter(s, cmd):
     '''filter string S through command CMD, returning its output'''
-    (pout, pin) = popen2.popen2(cmd, -1, 'b')
+    (pin, pout) = os.popen2(cmd, 'b')
     def writer():
         try:
             pin.write(s)