diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:43:42 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | f3d0d1d6cfec28ba89ed1819bee9fe75931e765d (patch) | |
tree | a1cc3902b3aa91ef597276a5e7303afc9500f42a | |
parent | eb08a3df46718c574e85b53799428060515ace8d (diff) | |
download | gitpython-f3d0d1d6cfec28ba89ed1819bee9fe75931e765d.tar.gz |
removed trailing whitespaces
-rw-r--r-- | git/remote.py | 2 |
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 |