##// END OF EJS Templates
largefiles: rename match_ to matchmod import in reposetup
liscju -
r29319:cc497d28 default
parent child Browse files
Show More
@@ -16,7 +16,7 b' from mercurial.i18n import _'
16 16 from mercurial import (
17 17 error,
18 18 localrepo,
19 match as match_,
19 match as matchmod,
20 20 scmutil,
21 21 )
22 22
@@ -103,7 +103,7 b' def reposetup(ui, repo):'
103 103 parentworking = working and ctx1 == self['.']
104 104
105 105 if match is None:
106 match = match_.always(self.root, self.getcwd())
106 match = matchmod.always(self.root, self.getcwd())
107 107
108 108 wlock = None
109 109 try:
General Comments 0
You need to be logged in to leave comments. Login now