keyword: do not customize ui.note() when overwriting
Behaviour change:
hg commit --verbose now prints out the names of the files
which are overwritten.
--- a/hgext/keyword.py Tue Mar 16 16:41:22 2010 +0100
+++ b/hgext/keyword.py Tue Mar 16 22:27:22 2010 +0100
@@ -168,9 +168,6 @@
mf = ctx.manifest()
if node is not None: # commit
files = [f for f in ctx.files() if f in mf]
- notify = self.ui.debug
- else: # kwexpand/kwshrink
- notify = self.ui.note
candidates = [f for f in files if self.iskwfile(f, ctx.flags)]
if candidates:
self.restrict = True # do not expand when reading
@@ -189,7 +186,7 @@
else:
found = self.re_kw.search(data)
if found:
- notify(msg % f)
+ self.ui.note(msg % f)
self.repo.wwrite(f, data, mf.flags(f))
if node is None:
self.repo.dirstate.normal(f)