diff mercurial/logcmdutil.py @ 45458:4532e7ebde4d

merge with stable
author Yuya Nishihara <yuya@tcha.org>
date Mon, 14 Sep 2020 19:39:51 +0900
parents 4aa484efc926 4ebc5f325bed
children a03fde1077ce
line wrap: on
line diff
--- a/mercurial/logcmdutil.py	Sun Sep 13 17:52:24 2020 +0900
+++ b/mercurial/logcmdutil.py	Mon Sep 14 19:39:51 2020 +0900
@@ -753,7 +753,7 @@
     fcache = {}
 
     def filematcher(ctx):
-        return scmutil.matchfiles(repo, fcache.get(ctx.rev(), []))
+        return scmutil.matchfiles(repo, fcache.get(scmutil.intrev(ctx), []))
 
     def revgen():
         for rev, cs in dagop.filectxancestors(fctxs, followfirst=followfirst):