Skip to content
Snippets Groups Projects
Commit 2e68868b65e4 authored by Manuel Jacob's avatar Manuel Jacob
Browse files

cleanup: use more precise variable name

parent b6d9fe6ef2dd
No related branches found
No related tags found
1 merge request!29Improve safebranchrevs()
......@@ -183,8 +183,8 @@
# defend against tracebacks if we specify -r in 'hg pull'
def safebranchrevs(orig, lrepo, repo, branches, revs):
revs, co = orig(lrepo, repo, branches, revs)
def safebranchrevs(orig, lrepo, otherrepo, branches, revs):
revs, co = orig(lrepo, otherrepo, branches, revs)
if (
not isinstance(co, int)
or hgutil.safehasattr(lrepo, b'changelog')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment