Commit c2d2d84a authored by Michal Čihař's avatar Michal Čihař

Parse command output from utf-8

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 53c9db86
......@@ -473,7 +473,7 @@ class GitRepository(Repository):
header = True
for line in text.splitlines():
for line in text.decode('utf-8').splitlines():
if header:
if not line:
header = False
......
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