Mercurial > public > mercurial-scm > hg
diff hgext/convert/subversion.py @ 14233:659f34b833b9
rename util.set_binary to setbinary
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Fri, 06 May 2011 15:25:35 +0200 |
parents | df2399663392 |
children | 38af0f514134 |
line wrap: on
line diff
--- 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)