##// END OF EJS Templates
path: pass `path` to `peer` in `hg fastannotate`...
marmoute -
r50630:8c6f7839 default
parent child Browse files
Show More
@@ -151,8 +151,11 b' def annotatepeer(repo):'
151 ui = repo.ui
151 ui = repo.ui
152
152
153 remotedest = ui.config(b'fastannotate', b'remotepath', b'default')
153 remotedest = ui.config(b'fastannotate', b'remotepath', b'default')
154 r = urlutil.get_unique_pull_path(b'fastannotate', repo, ui, remotedest)
154 remotepath = urlutil.get_unique_pull_path_obj(
155 remotepath = r[0]
155 b'fastannotate',
156 ui,
157 remotedest,
158 )
156 peer = hg.peer(ui, {}, remotepath)
159 peer = hg.peer(ui, {}, remotepath)
157
160
158 try:
161 try:
General Comments 0
You need to be logged in to leave comments. Login now