hgext/largefiles/localstore.py
changeset 29421 ecbbf4d56ee8
parent 29409 d2c375071d16
child 30180 736f92c44656
--- a/hgext/largefiles/localstore.py	Mon Jun 27 10:33:33 2016 +0200
+++ b/hgext/largefiles/localstore.py	Thu Jun 23 22:37:17 2016 +0200
@@ -47,7 +47,10 @@
     def _verifyfiles(self, contents, filestocheck):
         failed = False
         for cset, filename, expectedhash in filestocheck:
-            storepath, exists = lfutil.findstorepath(self.remote, expectedhash)
+            storepath, exists = lfutil.findstorepath(self.repo, expectedhash)
+            if not exists:
+                storepath, exists = lfutil.findstorepath(
+                    self.remote, expectedhash)
             if not exists:
                 self.ui.warn(
                     _('changeset %s: %s references missing %s\n')