hgext/convert/cvs.py
changeset 5306 7256cc396bbf
parent 5305 87348cdce88c
child 5308 9400d677efc7
--- a/hgext/convert/cvs.py
+++ b/hgext/convert/cvs.py
@@ -34,7 +34,7 @@ class convert_cvs(converter_source):
             os.chdir(self.path)
             id = None
             state = 0
-            for l in os.popen("cvsps -A -u --cvs-direct -q"):
+            for l in os.popen("cvsps -A -u --cvs-direct -q 2>&1"):
                 if state == 0: # header
                     if l.startswith("PatchSet"):
                         id = l[9:-2]