##// END OF EJS Templates
path: pass `path` to `peer` in `hg perf::discovery`...
marmoute -
r50632:4cedae99 default
parent child Browse files
Show More
@@ -997,6 +997,11 b' def perfdiscovery(ui, repo, path, **opts'
997 timer, fm = gettimer(ui, opts)
997 timer, fm = gettimer(ui, opts)
998
998
999 try:
999 try:
1000 from mercurial.utils.urlutil import get_unique_pull_path_obj
1001
1002 path = get_unique_pull_path_obj(b'perfdiscovery', ui, path)
1003 except ImportError:
1004 try:
1000 from mercurial.utils.urlutil import get_unique_pull_path
1005 from mercurial.utils.urlutil import get_unique_pull_path
1001
1006
1002 path = get_unique_pull_path(b'perfdiscovery', repo, ui, path)[0]
1007 path = get_unique_pull_path(b'perfdiscovery', repo, ui, path)[0]
General Comments 0
You need to be logged in to leave comments. Login now