# HG changeset patch # User Pulkit Goyal # Date 1539395469 -10800 # Node ID 47480979025689389a11f9cdc7156e164a668af6 # Parent 63245ad598afc4dd586396bc2b1e9cdd88a51b94 py3: use '%d' for integers instead of '%s' Differential Revision: https://phab.mercurial-scm.org/D5036 diff -r 63245ad598af -r 474809790256 hgext/convert/monotone.py --- a/hgext/convert/monotone.py Sat Oct 13 04:47:51 2018 +0300 +++ b/hgext/convert/monotone.py Sat Oct 13 04:51:09 2018 +0300 @@ -102,7 +102,7 @@ command.append('l') for arg in args: - command += "%s:%s" % (len(arg), arg) + command += "%d:%s" % (len(arg), arg) command.append('e') command = ''.join(command)