##// END OF EJS Templates
debugdiscovery: drop reference to invalid --branch option...
Martin von Zweigbergk -
r35418:2105bdd9 default
parent child Browse files
Show More
@@ -744,8 +744,7 b' def debugstate(ui, repo, **opts):'
744 def debugdiscovery(ui, repo, remoteurl="default", **opts):
744 def debugdiscovery(ui, repo, remoteurl="default", **opts):
745 """runs the changeset discovery protocol in isolation"""
745 """runs the changeset discovery protocol in isolation"""
746 opts = pycompat.byteskwargs(opts)
746 opts = pycompat.byteskwargs(opts)
747 remoteurl, branches = hg.parseurl(ui.expandpath(remoteurl),
747 remoteurl, branches = hg.parseurl(ui.expandpath(remoteurl))
748 opts.get('branch'))
749 remote = hg.peer(repo, opts, remoteurl)
748 remote = hg.peer(repo, opts, remoteurl)
750 ui.status(_('comparing with %s\n') % util.hidepassword(remoteurl))
749 ui.status(_('comparing with %s\n') % util.hidepassword(remoteurl))
751
750
General Comments 0
You need to be logged in to leave comments. Login now