summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:44:10 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commit01f142158ee5f2c97ff28c27286c0700234bd8d2 (patch)
tree4fe7bc076b9c661836d5b8d49eccf0d0043f546c
parentf3d0d1d6cfec28ba89ed1819bee9fe75931e765d (diff)
downloadgitpython-01f142158ee5f2c97ff28c27286c0700234bd8d2.tar.gz
removed trailing whitespaces
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index 40325739..e7b3579b 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -295,7 +295,7 @@ class FetchInfo(object):
# parse lines
control_character, operation, local_remote_ref, remote_local_ref, note = match.groups()
try:
- _new_hex_sha, _fetch_operation, fetch_note = fetch_line.split("\t")
+ _new_hex_sha, _fetch_operation, fetch_note = fetch_line.split("\t")
ref_type_name, fetch_note = fetch_note.split(' ', 1)
except ValueError: # unpack error
raise ValueError("Failed to parse FETCH_HEAD line: %r" % fetch_line)