D5862: py3: use '%d' for integers instead of '%s'

2019-02-05 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG9b4a142a2035: py3: use %d for integers instead 
of %s (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5862?vs=13829=13833

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

AFFECTED FILES
  hgext/convert/monotone.py

CHANGE DETAILS

diff --git a/hgext/convert/monotone.py b/hgext/convert/monotone.py
--- a/hgext/convert/monotone.py
+++ b/hgext/convert/monotone.py
@@ -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':



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D5862: py3: use '%d' for integers instead of '%s'

2019-02-05 Thread pulkit (Pulkit Goyal)
pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  I think this is the last of these occurences because I have got the test 
passing
  on python3 in a later patch.

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  hgext/convert/monotone.py

CHANGE DETAILS

diff --git a/hgext/convert/monotone.py b/hgext/convert/monotone.py
--- a/hgext/convert/monotone.py
+++ b/hgext/convert/monotone.py
@@ -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':



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel