##// END OF EJS Templates
perf: fix typo in perfphasesremote()
Yuya Nishihara -
r39229:cee9043c stable
parent child Browse files
Show More
@@ -807,7 +807,7 b' def perfphasesremote(ui, repo, dest=None'
807
807
808 path = ui.paths.getpath(dest, default=('default-push', 'default'))
808 path = ui.paths.getpath(dest, default=('default-push', 'default'))
809 if not path:
809 if not path:
810 raise error.abort(('default repository not configured!'),
810 raise error.Abort(('default repository not configured!'),
811 hint=("see 'hg help config.paths'"))
811 hint=("see 'hg help config.paths'"))
812 dest = path.pushloc or path.loc
812 dest = path.pushloc or path.loc
813 branches = (path.branch, opts.get('branch') or [])
813 branches = (path.branch, opts.get('branch') or [])
General Comments 0
You need to be logged in to leave comments. Login now