summaryrefslogtreecommitdiff
path: root/git/objects
diff options
context:
space:
mode:
authorOrestis Markou <orestis@orestis.gr>2011-05-01 14:33:41 +0300
committerOrestis Markou <orestis@orestis.gr>2011-05-01 14:33:41 +0300
commite7fa5ef735754e640bd6be6c0a77088009058d74 (patch)
tree55aca6991ce1507eb5ce7db49582693b797f9a80 /git/objects
parenta98e0af511b728030c12bf8633b077866bb74e47 (diff)
downloadgitpython-e7fa5ef735754e640bd6be6c0a77088009058d74.tar.gz
added test & fix for mangled tagger names
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