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.
1 parent a709f47 commit 2f3ee82Copy full SHA for 2f3ee82
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