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 1beee2a6..4930a275 100644
--- a/project.py
+++ b/project.py
@@ -728,7 +728,7 @@ class Project(object):
728 last_mine = None 728 last_mine = None
729 cnt_mine = 0 729 cnt_mine = 0
730 for commit in local_changes: 730 for commit in local_changes:
731 commit_id, committer_email = commit.split(' ', 2) 731 commit_id, committer_email = commit.split(' ', 1)
732 if committer_email == self.UserEmail: 732 if committer_email == self.UserEmail:
733 last_mine = commit_id 733 last_mine = commit_id
734 cnt_mine += 1 734 cnt_mine += 1