# HG changeset patch # User Christian Ebert # Date 1268774903 -3600 # Node ID fbe138da6b3888745a0a039cdcd1fbfbaafedbb4 # Parent 2df04488869329c563da00c29e6ef5b846b9ef56 keyword: 1 variable name for overwriting candidates diff -r 2df044888693 -r fbe138da6b38 hgext/keyword.py --- a/hgext/keyword.py Tue Mar 16 22:27:22 2010 +0100 +++ b/hgext/keyword.py Tue Mar 16 22:28:23 2010 +0100 @@ -162,13 +162,13 @@ Caveat: localrepository._link fails on Windows.''' return self.match(path) and not 'l' in flagfunc(path) - def overwrite(self, node, expand, files): + def overwrite(self, node, expand, candidates): '''Overwrites selected files expanding/shrinking keywords.''' ctx = self.repo[node] mf = ctx.manifest() if node is not None: # commit - files = [f for f in ctx.files() if f in mf] - candidates = [f for f in files if self.iskwfile(f, ctx.flags)] + candidates = [f for f in ctx.files() if f in mf] + candidates = [f for f in candidates if self.iskwfile(f, ctx.flags)] if candidates: self.restrict = True # do not expand when reading msg = (expand and _('overwriting %s expanding keywords\n')