# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1526734383 -19800 # Node ID a40041caf8afd0f61333ea48dd923b95894af915 # Parent 543b7b349b2c9807b9dcfded08d7dcc79f10c5c2 py3: use '%d' for integers in hgext/infinitepush/__init__.py Differential Revision: https://phab.mercurial-scm.org/D3591 diff -r 543b7b349b2c -r a40041caf8af hgext/infinitepush/__init__.py --- a/hgext/infinitepush/__init__.py Sat May 19 18:21:21 2018 +0530 +++ b/hgext/infinitepush/__init__.py Sat May 19 18:23:03 2018 +0530 @@ -565,19 +565,19 @@ if isinstance(localkey, str) and _scratchbranchmatcher(localkey): scratchnode = repo.bundlestore.index.getnode(localkey) if scratchnode: - return "%s %s\n" % (1, scratchnode) + return "%d %s\n" % (1, scratchnode) else: - return "%s %s\n" % (0, 'scratch branch %s not found' % localkey) + return "%d %s\n" % (0, 'scratch branch %s not found' % localkey) else: try: r = hex(repo.lookup(localkey)) - return "%s %s\n" % (1, r) + return "%d %s\n" % (1, r) except Exception as inst: if repo.bundlestore.index.getbundle(localkey): - return "%s %s\n" % (1, localkey) + return "%d %s\n" % (1, localkey) else: r = str(inst) - return "%s %s\n" % (0, r) + return "%d %s\n" % (0, r) return _lookup def _pull(orig, ui, repo, source="default", **opts):