hgext/largefiles/lfcommands.py
changeset 48116 5ced12cfa41b
parent 48106 82e142b9ad18
child 48168 df3021c1f093
--- a/hgext/largefiles/lfcommands.py	Tue Sep 28 09:08:43 2021 -0700
+++ b/hgext/largefiles/lfcommands.py	Tue Sep 28 08:47:11 2021 -0700
@@ -26,6 +26,7 @@
     exthelper,
     hg,
     lock,
+    logcmdutil,
     match as matchmod,
     pycompat,
     scmutil,
@@ -657,7 +658,7 @@
     revs = opts.get('rev', [])
     if not revs:
         raise error.Abort(_(b'no revisions specified'))
-    revs = scmutil.revrange(repo, revs)
+    revs = logcmdutil.revrange(repo, revs)
 
     numcached = 0
     for rev in revs: