changeset 41572:9b4a142a2035

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
author Pulkit Goyal <pulkit@yandex-team.ru>
date Tue, 05 Feb 2019 21:29:55 +0300
parents f9ad1b65d3c3
children 83d62df28ab6
files hgext/convert/monotone.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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':