# HG changeset patch
# User Manuel Jacob <me@manueljacob.de>
# Date 1589114808 -7200
#      Sun May 10 14:46:48 2020 +0200
# Node ID 2e68868b65e40e91dc05cee9bfc44e5f6cf8653b
# Parent  b6d9fe6ef2dd6ff312cfa8b96a593424b70c268d
cleanup: use more precise variable name

diff --git a/hggit/__init__.py b/hggit/__init__.py
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -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')