diff options
| -rwxr-xr-x | runtests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.py b/runtests.py index 976a0cbbf..d06b241f0 100755 --- a/runtests.py +++ b/runtests.py @@ -250,10 +250,10 @@ def main(argv): # Fix commit ids (HEAD is local to current repo) out = subprocess.check_output(['git', 'rev-parse', commit_b]) - commit_b = out.strip() + commit_b = out.strip().decode('ascii') out = subprocess.check_output(['git', 'rev-parse', commit_a]) - commit_a = out.strip() + commit_a = out.strip().decode('ascii') cmd = ['asv', 'continuous', '-e', '-f', '1.05', commit_a, commit_b] + bench_args |
