# HG changeset patch # User Christian Ebert # Date 1268774842 -3600 # Node ID 2df04488869329c563da00c29e6ef5b846b9ef56 # Parent 61c52fedbd45c0bc486179af93209d8d5d6fe4e3 keyword: 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 61c52fedbd45 -r 2df044888693 hgext/keyword.py --- 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)