py3: use '%d' for integers instead of '%s'
authorPulkit Goyal <pulkit@yandex-team.ru>
Tue, 05 Feb 2019 21:29:55 +0300
changeset 41572 9b4a142a2035
parent 41571 f9ad1b65d3c3
child 41573 83d62df28ab6
py3: use '%d' for integers instead of '%s' I think this is the last of these occurences because I have got the test passing on python3 in a later patch. Differential Revision: https://phab.mercurial-scm.org/D5862
hgext/convert/monotone.py
--- a/hgext/convert/monotone.py	Tue Feb 05 21:17:46 2019 +0300
+++ b/hgext/convert/monotone.py	Tue Feb 05 21:29:55 2019 +0300
@@ -154,7 +154,7 @@
         retval = []
         while True:
             commandnbr, stream, length, output = self.mtnstdioreadpacket()
-            self.ui.debug('mtn: read packet %s:%s:%s\n' %
+            self.ui.debug('mtn: read packet %s:%s:%d\n' %
                 (commandnbr, stream, length))
 
             if stream == 'l':