aboutsummaryrefslogtreecommitdiff
path: root/lib/git_python/tag.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-05-20 15:56:38 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-05-20 15:56:38 +0200
commit35ddb45b41b3de2d4f783608ad8d8752f6557997 (patch)
treeaa5cc1acfcf65a4c7889846c227e85386090f719 /lib/git_python/tag.py
parent1dc09f0ece61ef2bd629e8bfe532aa24f4f8e0c2 (diff)
downloadGitPython-35ddb45b41b3de2d4f783608ad8d8752f6557997.tar.gz
GitPython-35ddb45b41b3de2d4f783608ad8d8752f6557997.zip
removed unneeded spaces
Diffstat (limited to 'lib/git_python/tag.py')
-rw-r--r--lib/git_python/tag.py46
1 files changed, 23 insertions, 23 deletions
diff --git a/lib/git_python/tag.py b/lib/git_python/tag.py
index 7da48d85..fb119f76 100644
--- a/lib/git_python/tag.py
+++ b/lib/git_python/tag.py
@@ -2,32 +2,32 @@ from commit import Commit
class Tag(object):
def __init__(self, name, commit):
- """
+ """
Instantiate a new Tag
-
+
``name``
is the name of the head
-
+
``commit``
is the Commit that the head points to
-
+
Returns
``GitPython.Tag``
- """
+ """
self.name = name
self.commit = commit
-
+
@classmethod
def find_all(cls, repo, **kwargs):
- """
+ """
Find all Tags
-
+
``repo``
is the Repo
-
+
``kwargs``
is a dict of options
-
+
Returns
``GitPython.Tag[]``
"""
@@ -35,20 +35,20 @@ class Tag(object):
'format': "%(refname)%00%(objectname)"}
options.update(**kwargs)
- output = repo.git.for_each_ref("refs/tags", **options)
+ output = repo.git.for_each_ref("refs/tags", **options)
return cls.list_from_string(repo, output)
-
+
@classmethod
def list_from_string(cls, repo, text):
- """
+ """
Parse out tag information into an array of baked Tag objects
-
+
``repo``
is the Repo
-
+
``text``
is the text output from the git command
-
+
Returns
``GitPython.Tag[]``
"""
@@ -56,23 +56,23 @@ class Tag(object):
for line in text.splitlines():
tags.append(cls.from_string(repo, line))
return tags
-
+
@classmethod
def from_string(cls, repo, line):
- """
+ """
Create a new Tag instance from the given string.
-
+
``repo``
is the Repo
-
+
``line``
is the formatted tag information
-
+
Format
name: [a-zA-Z_/]+
<null byte>
id: [0-9A-Fa-f]{40}
-
+
Returns
``GitPython.Tag``
"""
@@ -80,6 +80,6 @@ class Tag(object):
name = full_name.split("/")[-1]
commit = Commit(repo, **{'id': ids})
return Tag(name, commit)
-
+
def __repr__(self):
return '<GitPython.Tag "%s">' % self.name