hgext/convert/subversion.py
changeset 14233 659f34b833b9
parent 14232 df2399663392
child 14273 38af0f514134
--- a/hgext/convert/subversion.py	Fri May 06 15:22:31 2011 +0200
+++ b/hgext/convert/subversion.py	Fri May 06 15:25:35 2011 +0200
@@ -112,8 +112,8 @@
     """Fetch SVN log in a subprocess and channel them back to parent to
     avoid memory collection issues.
     """
-    util.set_binary(sys.stdin)
-    util.set_binary(sys.stdout)
+    util.setbinary(sys.stdin)
+    util.setbinary(sys.stdout)
     args = decodeargs(sys.stdin.read())
     get_log_child(sys.stdout, *args)