D2227: debugcommands: mergestate version is an int, use %d on it

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Tue Feb 13 12:15:10 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG72d155a792b1: debugcommands: mergestate version is an int, use %d on it (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2227?vs=5633&id=5640

REVISION DETAIL
  https://phab.mercurial-scm.org/D2227

AFFECTED FILES
  mercurial/debugcommands.py

CHANGE DETAILS

diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -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:



To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list