diff hgext/purge.py @ 16930:9efe4a95c099

purge: lowercase messages
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents 38caf405d010
children 31c863bd21e8
line wrap: on
line diff
--- 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)