diff hgext/largefiles/overrides.py @ 45453:39ddb1121c4e

largefiles: remove unused 'rev' parameter from downloadlfiles() It's no longer used since 83ead8cb0ff2 "largefiles: implement pull --all-largefiles as a special case of --lfrev."
author Yuya Nishihara <yuya@tcha.org>
date Fri, 11 Sep 2020 10:47:17 +0900
parents 8c466bcb0879
children e5e1285b6f6f
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py	Sat Sep 12 11:18:12 2020 -0700
+++ b/hgext/largefiles/overrides.py	Fri Sep 11 10:47:17 2020 +0900
@@ -1094,7 +1094,7 @@
         # truncated at that point.  The user may expect a download count with
         # this option, so attempt whether or not this is a largefile repo.
         if opts.get(b'all_largefiles'):
-            success, missing = lfcommands.downloadlfiles(ui, repo, None)
+            success, missing = lfcommands.downloadlfiles(ui, repo)
 
             if missing != 0:
                 return None