Files
PyGithub/github/GithubObjects/GitTag.py
T
2012-03-14 22:56:08 +01:00

14 lines
279 B
Python

from GithubObject import *
GitTag = GithubObject(
"GitTag",
BaseUrl( lambda obj: obj._repo._baseUrl() + "/git/tags/" + obj.sha ),
InternalSimpleAttributes(
"tag", "sha", "url",
"message",
"tagger",
"object",
"_repo",
),
)