diff hgext/convert/monotone.py @ 16231:ce292f1379ba stable

i18n: fix all remaining uses of % inside _()
author Matt Mackall <mpm@selenic.com>
date Thu, 08 Mar 2012 13:35:27 -0600
parents 64481eee6215
children e34106fa0dc3
line wrap: on
line diff
--- a/hgext/convert/monotone.py	Wed Mar 07 23:21:11 2012 +0000
+++ b/hgext/convert/monotone.py	Thu Mar 08 13:35:27 2012 -0600
@@ -113,7 +113,7 @@
 
         stream = self.mtnreadfp.read(1)
         if stream not in 'mewptl':
-            raise util.Abort(_('bad mtn packet - bad stream type %s' % stream))
+            raise util.Abort(_('bad mtn packet - bad stream type %s') % stream)
 
         read = self.mtnreadfp.read(1)
         if read != ':':