diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |