mercurial/ui.py
changeset 38575 152f4822d210
parent 38526 313a940d49a3
child 38623 92c845c097aa
--- a/mercurial/ui.py	Thu Jul 05 09:53:00 2018 +0530
+++ b/mercurial/ui.py	Sun Jun 10 17:07:29 2018 +0900
@@ -156,10 +156,10 @@
 }
 
 def _maybestrurl(maybebytes):
-    return util.rapply(pycompat.strurl, maybebytes)
+    return pycompat.rapply(pycompat.strurl, maybebytes)
 
 def _maybebytesurl(maybestr):
-    return util.rapply(pycompat.bytesurl, maybestr)
+    return pycompat.rapply(pycompat.bytesurl, maybestr)
 
 class httppasswordmgrdbproxy(object):
     """Delays loading urllib2 until it's needed."""