--- a/hgext/extdiff.py Mon Aug 06 14:32:23 2007 -0700
+++ b/hgext/extdiff.py Mon Aug 06 14:42:11 2007 -0700
@@ -63,9 +63,8 @@
dirname = '%s.%s' % (dirname, short(node))
base = os.path.join(tmproot, dirname)
os.mkdir(base)
- if not ui.quiet:
- ui.write_err(_('making snapshot of %d files from rev %s\n') %
- (len(files), short(node)))
+ ui.note(_('making snapshot of %d files from rev %s\n') %
+ (len(files), short(node)))
for fn in files:
if not fn in mf:
# skipping new file after a merge ?
@@ -90,9 +89,8 @@
dirname = "root"
base = os.path.join(tmproot, dirname)
os.mkdir(base)
- if not ui.quiet:
- ui.write_err(_('making snapshot of %d files from working dir\n') %
- (len(files)))
+ ui.note(_('making snapshot of %d files from working dir\n') %
+ (len(files)))
for fn in files:
wfn = util.pconvert(fn)
ui.note(' %s\n' % wfn)