hgext/patchbomb.py
changeset 46907 ffd3e823a7e5
parent 46819 d4ba4d51f85f
child 46908 4452cb788404
--- a/hgext/patchbomb.py	Sun Apr 11 23:54:35 2021 +0200
+++ b/hgext/patchbomb.py	Mon Apr 12 03:01:04 2021 +0200
@@ -99,7 +99,10 @@
     templater,
     util,
 )
-from mercurial.utils import dateutil
+from mercurial.utils import (
+    dateutil,
+    urlutil,
+)
 
 stringio = util.stringio
 
@@ -529,7 +532,7 @@
     ui = repo.ui
     url = ui.expandpath(dest or b'default-push', dest or b'default')
     url = hg.parseurl(url)[0]
-    ui.status(_(b'comparing with %s\n') % util.hidepassword(url))
+    ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(url))
 
     revs = [r for r in revs if r >= 0]
     if not revs: