# HG changeset patch # User Pulkit Goyal # Date 1539396740 -10800 # Node ID a17c07793dcd02a98c4706eeb3a7b4e4fcd84c6c # Parent f4893b59230feb181351389ac905ef221ddc451a py3: use '%d' for rev nums instead of '%s' This makes test-close-head.t pass on Python 3. Differential Revision: https://phab.mercurial-scm.org/D5040 diff -r f4893b59230f -r a17c07793dcd contrib/python3-whitelist --- a/contrib/python3-whitelist Sat Oct 13 05:03:24 2018 +0300 +++ b/contrib/python3-whitelist Sat Oct 13 05:12:20 2018 +0300 @@ -71,6 +71,7 @@ test-clone-update-order.t test-clone.t test-clonebundles.t +test-close-head.t test-commit-amend.t test-commit-interactive.t test-commit-multiple.t diff -r f4893b59230f -r a17c07793dcd hgext/closehead.py --- a/hgext/closehead.py Sat Oct 13 05:03:24 2018 +0300 +++ b/hgext/closehead.py Sat Oct 13 05:12:20 2018 +0300 @@ -66,7 +66,7 @@ heads = set(repo[h].rev() for h in heads) for rev in revs: if rev not in heads: - raise error.Abort(_('revision is not an open head: %s') % rev) + raise error.Abort(_('revision is not an open head: %d') % rev) message = cmdutil.logmessage(ui, opts) if not message: