diff hgext/convert/convcmd.py @ 16925:eaf6a6d7f015

convert: lowercase status and abort messages
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents f366d4c2ff34
children e7cfe3587ea4
line wrap: on
line diff
--- a/hgext/convert/convcmd.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/hgext/convert/convcmd.py	Tue Jun 12 14:18:18 2012 +0200
@@ -280,7 +280,7 @@
     def writeauthormap(self):
         authorfile = self.authorfile
         if authorfile:
-            self.ui.status(_('Writing author map file %s\n') % authorfile)
+            self.ui.status(_('writing author map file %s\n') % authorfile)
             ofile = open(authorfile, 'w+')
             for author in self.authors:
                 ofile.write("%s=%s\n" % (author, self.authors[author]))
@@ -297,7 +297,7 @@
             try:
                 srcauthor, dstauthor = line.split('=', 1)
             except ValueError:
-                msg = _('Ignoring bad line in author map file %s: %s\n')
+                msg = _('ignoring bad line in author map file %s: %s\n')
                 self.ui.warn(msg % (authorfile, line.rstrip()))
                 continue