diff mercurial/mail.py @ 26778:a95c975f42e3

l10n: use %d instead of %s for numbers
author timeless@mozdev.org
date Wed, 14 Oct 2015 22:29:03 -0400
parents ab1af5e7d734
children df31e126b706
line wrap: on
line diff
--- a/mercurial/mail.py	Thu Oct 15 20:36:12 2015 -0400
+++ b/mercurial/mail.py	Wed Oct 14 22:29:03 2015 -0400
@@ -127,7 +127,7 @@
     else:
         defaultport = 25
     mailport = util.getport(ui.config('smtp', 'port', defaultport))
-    ui.note(_('sending mail: smtp host %s, port %s\n') %
+    ui.note(_('sending mail: smtp host %s, port %d\n') %
             (mailhost, mailport))
     s.connect(host=mailhost, port=mailport)
     if starttls: