# HG changeset patch # User liscju # Date 2016-05-12 09:49:23 # Node ID cc497d2830b010fc9d790d8b7f00a7de82b7ef14 # Parent 2572bb2e06f87de74849c3fd382813a47be8a779 largefiles: rename match_ to matchmod import in reposetup diff --git a/hgext/largefiles/reposetup.py b/hgext/largefiles/reposetup.py --- a/hgext/largefiles/reposetup.py +++ b/hgext/largefiles/reposetup.py @@ -16,7 +16,7 @@ from mercurial.i18n import _ from mercurial import ( error, localrepo, - match as match_, + match as matchmod, scmutil, ) @@ -103,7 +103,7 @@ def reposetup(ui, repo): 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: