We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a709f47 + 2f3ee82 commit 47c2062Copy full SHA for 47c2062
codespeed/commits/mercurial.py
@@ -63,7 +63,7 @@ def getlogs(endrev, startrev):
63
if p.returncode != 0:
64
raise CommitLogError(str(stderr))
65
else:
66
- stdout = stdout.rstrip(b'\n') # Remove last newline
+ stdout = str(stdout).rstrip(b'\n') # Remove last newline
67
logs = []
68
for log in stdout.split("=newlog=\n"):
69
elements = []
0 commit comments