summaryrefslogtreecommitdiff
path: root/git/remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/remote.py')
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index b6a5bcc6..40325739 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -183,7 +183,7 @@ class PushInfo(object):
split_token = "..."
if control_character == " ":
split_token = ".."
- old_sha, _new_sha = summary.split(' ')[0].split(split_token)
+ old_sha, _new_sha = summary.split(' ')[0].split(split_token)
# have to use constructor here as the sha usually is abbreviated
old_commit = old_sha
# END message handling