# HG changeset patch # User Pulkit Goyal # Date 2019-06-05 19:44:38 # Node ID ae3f862cbb3d13eafad4189a0dd3b34bea288039 # Parent 027f1567f97fa094a43f9d99e821b57cf44520b8 py3: add b'' prefix at one place in run-tests.py #skip-blame because just b'' prefix Differential Revision: https://phab.mercurial-scm.org/D6482 diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -3182,7 +3182,7 @@ class TestRunner(object): assert os.path.dirname(self._bindir) == self._installdir assert self._hgroot, 'must be called after _installhg()' cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"' - % {b'make': 'make', # TODO: switch by option or environment? + % {b'make': b'make', # TODO: switch by option or environment? b'prefix': self._installdir}) cwd = os.path.join(self._hgroot, b'contrib', b'chg') vlog("# Running", cmd)