diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 15:39:28 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 15:39:28 +0100 |
commit | 6f55c17f48d7608072199496fbcefa33f2e97bf0 (patch) | |
tree | d6c69f667f3cce87d3fe5bf9baa62a081f4af7a8 /git/refs | |
parent | 1b9d3b961bdf79964b883d3179f085d8835e528d (diff) | |
download | gitpython-6f55c17f48d7608072199496fbcefa33f2e97bf0.tar.gz |
Replaced ordered dict with standard version; used logging module
All performance tests still print to stderr, but do so in a py3 compatible way
Diffstat (limited to 'git/refs')
-rw-r--r-- | git/refs/tag.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/refs/tag.py b/git/refs/tag.py index 50d2b2af..6509c891 100644 --- a/git/refs/tag.py +++ b/git/refs/tag.py @@ -13,9 +13,9 @@ class TagReference(Reference): information in a tag object:: tagref = TagReference.list_items(repo)[0] - print tagref.commit.message + print(tagref.commit.message) if tagref.tag is not None: - print tagref.tag.message""" + print(tagref.tag.message)""" __slots__ = tuple() _common_path_default = "refs/tags" |