summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index dec21ab1..66316411 100644
--- a/project.py
+++ b/project.py
@@ -1165,7 +1165,7 @@ class Project(object):
1165 last_mine = None 1165 last_mine = None
1166 cnt_mine = 0 1166 cnt_mine = 0
1167 for commit in local_changes: 1167 for commit in local_changes:
1168 commit_id, committer_email = commit.split(' ', 1) 1168 commit_id, committer_email = commit.decode('utf-8').split(' ', 1)
1169 if committer_email == self.UserEmail: 1169 if committer_email == self.UserEmail:
1170 last_mine = commit_id 1170 last_mine = commit_id
1171 cnt_mine += 1 1171 cnt_mine += 1