summaryrefslogtreecommitdiff
path: root/git/objects
diff options
context:
space:
mode:
Diffstat (limited to 'git/objects')
-rw-r--r--git/objects/tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index c7d02abe..25eec896 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -58,7 +58,7 @@ class TagObject(base.Object):
self.tag = lines[2][4:] # tag <tag name>
- tagger_info = lines[3][7:]# tagger <actor> <date>
+ tagger_info = lines[3]# tagger <actor> <date>
self.tagger, self.tagged_date, self.tagger_tz_offset = parse_actor_and_date(tagger_info)
# line 4 empty - it could mark the beginning of the next header