changeset 42428:ae3f862cbb3d

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
author Pulkit Goyal <pulkit@yandex-team.ru>
date Wed, 05 Jun 2019 22:44:38 +0300
parents 027f1567f97f
children 6ed04139ed37
files tests/run-tests.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/run-tests.py	Thu Jun 06 10:07:14 2019 -0700
+++ b/tests/run-tests.py	Wed Jun 05 22:44:38 2019 +0300
@@ -3182,7 +3182,7 @@
         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)