Commit 2e5ac387 authored by Michal Čihař's avatar Michal Čihař

Fix unicode output parsing from Mercurial

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent c2d2d84a
...@@ -889,7 +889,7 @@ class HgRepository(Repository): ...@@ -889,7 +889,7 @@ class HgRepository(Repository):
message = [] message = []
header = True header = True
for line in text.splitlines(): for line in text.decode('utf-8').splitlines():
line = line.strip() line = line.strip()
if not line: if not line:
continue continue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment