summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:43:04 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commiteb08a3df46718c574e85b53799428060515ace8d (patch)
tree36ec5757f1e1a9e3fa8d4108fd718c0f84025c88
parentfb14533db732d62778ae48a4089b2735fb9e6f92 (diff)
downloadgitpython-eb08a3df46718c574e85b53799428060515ace8d.tar.gz
removed trailing whitespaces
-rw-r--r--git/objects/tag.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index c6838336..017c4988 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -52,8 +52,8 @@ class TagObject(base.Object):
ostream = self.repo.odb.stream(self.binsha)
lines = ostream.read().decode(defenc).splitlines()
- _obj, hexsha = lines[0].split(" ")
- _type_token, type_name = lines[1].split(" ")
+ _obj, hexsha = lines[0].split(" ")
+ _type_token, type_name = lines[1].split(" ")
self.object = \
get_object_type_by_name(type_name.encode('ascii'))(self.repo, hex_to_bin(hexsha))