diff mercurial/obsutil.py @ 35610:22c42bfbe7ab

visibility: pass a normal repo to _getfilteredreason There is no reason to pass an unfiltered-repo to _getfilteredreason and successorssets, so use a normal repo instead. Differential Revision: https://phab.mercurial-scm.org/D1853
author Boris Feld <boris.feld@octobus.net>
date Fri, 12 Jan 2018 11:15:41 +0000
parents c026547454dd
children c0a6733f7e7a
line wrap: on
line diff
--- a/mercurial/obsutil.py	Fri Jan 12 11:10:18 2018 +0000
+++ b/mercurial/obsutil.py	Fri Jan 12 11:15:41 2018 +0000
@@ -875,10 +875,10 @@
                                   "%d more"),
 }
 
-def _getfilteredreason(unfilteredrepo, changeid, ctx):
+def _getfilteredreason(repo, changeid, ctx):
     """return a human-friendly string on why a obsolete changeset is hidden
     """
-    successors = successorssets(unfilteredrepo, ctx.node())
+    successors = successorssets(repo, ctx.node())
     fate = _getobsfate(successors)
 
     # Be more precise in case the revision is superseded