author | Martin von Zweigbergk <martinvonz@google.com> |
Mon, 27 Oct 2014 21:10:24 -0700 | |
changeset 23145 | 97b6e762f218 |
parent 23144 | 55325a327754 |
child 23146 | 5311de37b86f |
--- a/hgext/largefiles/overrides.py Thu Oct 30 22:32:39 2014 -0700 +++ b/hgext/largefiles/overrides.py Mon Oct 27 21:10:24 2014 -0700 @@ -35,7 +35,7 @@ m._fmap = set(m._files) m._always = False origmatchfn = m.matchfn - m.matchfn = lambda f: notlfile(f) and origmatchfn(f) or None + m.matchfn = lambda f: notlfile(f) and origmatchfn(f) return m oldmatch = installmatchfn(overridematch)