hgext/largefiles/reposetup.py
changeset 29319 cc497d2830b0
parent 29314 bde283a1ad1a
child 30191 328545c7d8a1
--- a/hgext/largefiles/reposetup.py	Thu May 12 11:48:39 2016 +0200
+++ b/hgext/largefiles/reposetup.py	Thu May 12 11:49:23 2016 +0200
@@ -16,7 +16,7 @@
 from mercurial import (
     error,
     localrepo,
-    match as match_,
+    match as matchmod,
     scmutil,
 )
 
@@ -103,7 +103,7 @@
             parentworking = working and ctx1 == self['.']
 
             if match is None:
-                match = match_.always(self.root, self.getcwd())
+                match = matchmod.always(self.root, self.getcwd())
 
             wlock = None
             try: