Commit 445d453a authored by Matthias Putz's avatar Matthias Putz

fixes info -o

parent 631893d7
...@@ -138,7 +138,7 @@ class Info(PagedCommand): ...@@ -138,7 +138,7 @@ class Info(PagedCommand):
self.out.nl() self.out.nl()
for c in localCommits: for c in localCommits:
split = c.split() split = c.decode('UTF-8').split()
self.sha(split[0] + " ") self.sha(split[0] + " ")
self.text(" ".join(split[1:])) self.text(" ".join(split[1:]))
self.out.nl() self.out.nl()
...@@ -150,7 +150,7 @@ class Info(PagedCommand): ...@@ -150,7 +150,7 @@ class Info(PagedCommand):
self.out.nl() self.out.nl()
for c in originCommits: for c in originCommits:
split = c.split() split = c.decode('UTF-8').split()
self.sha(split[0] + " ") self.sha(split[0] + " ")
self.text(" ".join(split[1:])) self.text(" ".join(split[1:]))
self.out.nl() self.out.nl()
...@@ -190,7 +190,7 @@ class Info(PagedCommand): ...@@ -190,7 +190,7 @@ class Info(PagedCommand):
self.out.nl() self.out.nl()
for commit in commits: for commit in commits:
split = commit.split() split = commit.decode('UTF-8').split()
self.text('{0:38}{1} '.format('', '-')) self.text('{0:38}{1} '.format('', '-'))
self.sha(split[0] + " ") self.sha(split[0] + " ")
self.text(" ".join(split[1:])) self.text(" ".join(split[1:]))
......
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