diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:23:49 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | 199099611dd2e62bae568897f163210a3e2d7dbb (patch) | |
tree | 8dc76620259e5f4f22c1c73c30daef76480e29cb /git/remote.py | |
parent | 14f3d06b47526d6f654490b4e850567e1b5d7626 (diff) | |
download | gitpython-199099611dd2e62bae568897f163210a3e2d7dbb.tar.gz |
renamed unused variables
Diffstat (limited to 'git/remote.py')
-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 73f10286..b4b6deea 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) # @UnusedVariable + 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 |