diff -r ac7b9ed0a245 -r b0d45612c552 hgext/largefiles/lfcommands.py --- a/hgext/largefiles/lfcommands.py Sun Sep 13 17:43:19 2020 +0900 +++ b/hgext/largefiles/lfcommands.py Sun Sep 13 17:46:48 2020 +0900 @@ -489,7 +489,7 @@ tonode = repo.changelog.node totalsuccess = 0 totalmissing = 0 - for rev in repo.revs(b'reverse(file(%s))', b'path:' + lfutil.shortname): + for rev in repo.revs(b'file(%s)', b'path:' + lfutil.shortname): success, missing = cachelfiles(ui, repo, tonode(rev)) totalsuccess += len(success) totalmissing += len(missing)