aboutsummaryrefslogtreecommitdiff
path: root/git/refs/tag.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-06-07 21:36:42 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-06-07 21:36:42 +0200
commit58a930a632c867b65b9a3802e2f4190cf32e33ee (patch)
tree95b1311a3a4bfcdf4c2dba66f360e6985184013e /git/refs/tag.py
parenta98e0af511b728030c12bf8633b077866bb74e47 (diff)
parentf6897c78be5a5530129df50742cb6cabfb8609c9 (diff)
downloadGitPython-58a930a632c867b65b9a3802e2f4190cf32e33ee.tar.gz
GitPython-58a930a632c867b65b9a3802e2f4190cf32e33ee.zip
Merge branch 'gitdbmerger'
Diffstat (limited to 'git/refs/tag.py')
-rw-r--r--git/refs/tag.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/git/refs/tag.py b/git/refs/tag.py
index c09d814d..3a1433be 100644
--- a/git/refs/tag.py
+++ b/git/refs/tag.py
@@ -2,8 +2,6 @@ from reference import Reference
__all__ = ["TagReference", "Tag"]
-
-
class TagReference(Reference):
"""Class representing a lightweight tag reference which either points to a commit
,a tag object or any other object. In the latter case additional information,
@@ -16,7 +14,6 @@ class TagReference(Reference):
print tagref.commit.message
if tagref.tag is not None:
print tagref.tag.message"""
-
__slots__ = tuple()
_common_path_default = "refs/tags"
@@ -45,7 +42,7 @@ class TagReference(Reference):
# make object read-only
# It should be reasonably hard to adjust an existing tag
object = property(Reference._get_object)
-
+
@classmethod
def create(cls, repo, path, ref='HEAD', message=None, force=False, **kwargs):
"""Create a new tag reference.
@@ -85,7 +82,5 @@ class TagReference(Reference):
"""Delete the given existing tag or tags"""
repo.git.tag("-d", *tags)
-
-
# provide an alias
Tag = TagReference