hgkw/keyword.py
changeset 700 bf7b214673e2
parent 699 57f8b7f021e8
child 701 ad66e72df159
--- 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)