aboutsummaryrefslogtreecommitdiff
path: root/git/objects/tag.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 21:09:47 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 21:09:47 +0100
commitc8e70749887370a99adeda972cc3503397b5f9a7 (patch)
tree38e1241fd6d756f783b6b56dc6628ac3ca41ed4f /git/objects/tag.py
parentbed3b0989730cdc3f513884325f1447eb378aaee (diff)
downloadGitPython-c8e70749887370a99adeda972cc3503397b5f9a7.tar.gz
GitPython-c8e70749887370a99adeda972cc3503397b5f9a7.zip
pep8 linting (trailing whitespace)
W291 trailing whitespace
Diffstat (limited to 'git/objects/tag.py')
-rw-r--r--git/objects/tag.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index 345bb1d5..3fd7a4d4 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -20,7 +20,7 @@ class TagObject(base.Object):
type = "tag"
__slots__ = ("object", "tag", "tagger", "tagged_date", "tagger_tz_offset", "message")
- def __init__(self, repo, binsha, object=None, tag=None,
+ def __init__(self, repo, binsha, object=None, tag=None,
tagger=None, tagged_date=None, tagger_tz_offset=None, message=None):
"""Initialize a tag object with additional data
@@ -30,9 +30,9 @@ class TagObject(base.Object):
:param tag: name of this tag
:param tagger: Actor identifying the tagger
:param tagged_date: int_seconds_since_epoch
- is the DateTime of the tag creation - use time.gmtime to convert
+ is the DateTime of the tag creation - use time.gmtime to convert
it into a different format
- :param tagged_tz_offset: int_seconds_west_of_utc is the timezone that the
+ :param tagged_tz_offset: int_seconds_west_of_utc is the timezone that the
authored_date is in, in a format similar to time.altzone"""
super(TagObject, self).__init__(repo, binsha)
if object is not None:
@@ -64,7 +64,7 @@ class TagObject(base.Object):
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
- # in case there really is no message, it would not exist. Otherwise
+ # in case there really is no message, it would not exist. Otherwise
# a newline separates header from message
if len(lines) > 5:
self.message = "\n".join(lines[5:])