# HG changeset patch # User Christian Ebert # Date 1268774842 -3600 # Node ID bf7b214673e26646ab8dfe1bf27b462aef316a3e # Parent 57f8b7f021e88cdc3b35fb1b6bef8856d69b49fe Do not customize ui.note() when overwriting Behaviour change: hg commit --verbose now prints out the names of the files which are overwritten. diff -r 57f8b7f021e8 -r bf7b214673e2 hgkw/keyword.py --- a/hgkw/keyword.py Thu Feb 18 05:55:05 2010 +0100 +++ b/hgkw/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)