hgext/purge.py
changeset 16930 9efe4a95c099
parent 16743 38caf405d010
child 19139 31c863bd21e8
--- a/hgext/purge.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/hgext/purge.py	Tue Jun 12 14:18:18 2012 +0200
@@ -101,10 +101,10 @@
     status = repo.status(match=match, ignored=opts['all'], unknown=True)
 
     for f in sorted(status[4] + status[5]):
-        ui.note(_('Removing file %s\n') % f)
+        ui.note(_('removing file %s\n') % f)
         remove(removefile, f)
 
     for f in sorted(directories, reverse=True):
         if match(f) and not os.listdir(repo.wjoin(f)):
-            ui.note(_('Removing directory %s\n') % f)
+            ui.note(_('removing directory %s\n') % f)
             remove(os.rmdir, f)