diff tests/printrevset.py @ 45567:a717de1cb624

log: remove unused argument from _makerevset() I want to make getrevs() reusable for other commands, but the dependency graph of this getrevs() function is a mess. Let's minimize it first.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 12 Sep 2020 16:19:01 +0900
parents 2372284d9457
children c1d0f83d62c4
line wrap: on
line diff
--- a/tests/printrevset.py	Sat Sep 12 16:11:10 2020 +0900
+++ b/tests/printrevset.py	Sat Sep 12 16:19:01 2020 +0900
@@ -16,7 +16,7 @@
     if not revs:
         return None
     match, pats, slowpath = logcmdutil._makematcher(repo, revs, pats, opts)
-    return logcmdutil._makerevset(repo, match, pats, slowpath, opts)
+    return logcmdutil._makerevset(repo, pats, slowpath, opts)
 
 
 def uisetup(ui):