##// END OF EJS Templates
py3: add b'' prefix at one place in run-tests.py...
Pulkit Goyal -
r42621:ae3f862c default
parent child Browse files
Show More
@@ -3182,7 +3182,7 b' class TestRunner(object):'
3182 assert os.path.dirname(self._bindir) == self._installdir
3182 assert os.path.dirname(self._bindir) == self._installdir
3183 assert self._hgroot, 'must be called after _installhg()'
3183 assert self._hgroot, 'must be called after _installhg()'
3184 cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"'
3184 cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"'
3185 % {b'make': 'make', # TODO: switch by option or environment?
3185 % {b'make': b'make', # TODO: switch by option or environment?
3186 b'prefix': self._installdir})
3186 b'prefix': self._installdir})
3187 cwd = os.path.join(self._hgroot, b'contrib', b'chg')
3187 cwd = os.path.join(self._hgroot, b'contrib', b'chg')
3188 vlog("# Running", cmd)
3188 vlog("# Running", cmd)
General Comments 0
You need to be logged in to leave comments. Login now