Mercurial > hg
diff hgext/keyword.py @ 7417:d3f1d316b72b
keyword: do not shadow builtin format (detected by pychecker)
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Tue, 25 Nov 2008 16:30:40 +0100 |
parents | 27d304c8cc03 |
children | 5aca12729a0d |
line wrap: on
line diff
--- a/hgext/keyword.py Tue Nov 25 23:26:33 2008 +0100 +++ b/hgext/keyword.py Tue Nov 25 16:30:40 2008 +0100 @@ -348,8 +348,8 @@ ui.note(_('unhooked all commit hooks\n')) ui.note('hg -R "%s" ci -m "%s"\n' % (tmpdir, msg)) repo.commit(text=msg) - format = ui.verbose and ' in %s' % path or '' - demostatus('%s keywords expanded%s' % (kwstatus, format)) + fmt = ui.verbose and ' in %s' % path or '' + demostatus('%s keywords expanded%s' % (kwstatus, fmt)) ui.write(repo.wread(fn)) ui.debug(_('\nremoving temporary repo %s\n') % tmpdir) shutil.rmtree(tmpdir, ignore_errors=True) @@ -382,9 +382,9 @@ if opts.get('all') or opts.get('ignore'): kwfstats += (('I', [f for f in files if f not in kwfiles]),) for char, filenames in kwfstats: - format = (opts.get('all') or ui.verbose) and '%s %%s\n' % char or '%s\n' + fmt = (opts.get('all') or ui.verbose) and '%s %%s\n' % char or '%s\n' for f in filenames: - ui.write(format % repo.pathto(f, cwd)) + ui.write(fmt % repo.pathto(f, cwd)) def shrink(ui, repo, *pats, **opts): '''revert expanded keywords in working directory