debugcommands: mergestate version is an int, use %d on it
authorAugie Fackler <augie@google.com>
Tue, 13 Feb 2018 10:38:02 -0500
changeset 36153 72d155a792b1
parent 36152 7f5108e58083
child 36154 4a7ba3ac9163
debugcommands: mergestate version is an int, use %d on it Differential Revision: https://phab.mercurial-scm.org/D2227
mercurial/debugcommands.py
--- a/mercurial/debugcommands.py	Tue Feb 13 10:20:57 2018 -0500
+++ b/mercurial/debugcommands.py	Tue Feb 13 10:38:02 2018 -0500
@@ -1406,7 +1406,7 @@
             return h
 
     def printrecords(version):
-        ui.write(('* version %s records\n') % version)
+        ui.write(('* version %d records\n') % version)
         if version == 1:
             records = v1records
         else: