##// END OF EJS Templates
run-tests: convert the remaining os.system() call to Unicode...
Matt Harbison -
r39699:b6fa1f62 default
parent child Browse files
Show More
@@ -2976,7 +2976,7 b' class TestRunner(object):'
2976 makedirs(self._bindir)
2976 makedirs(self._bindir)
2977
2977
2978 vlog("# Running", cmd)
2978 vlog("# Running", cmd)
2979 if os.system(cmd) == 0:
2979 if os.system(_strpath(cmd)) == 0:
2980 if not self.options.verbose:
2980 if not self.options.verbose:
2981 try:
2981 try:
2982 os.remove(installerrs)
2982 os.remove(installerrs)
General Comments 0
You need to be logged in to leave comments. Login now