From 6f55c17f48d7608072199496fbcefa33f2e97bf0 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 4 Jan 2015 15:39:28 +0100 Subject: Replaced ordered dict with standard version; used logging module All performance tests still print to stderr, but do so in a py3 compatible way --- git/refs/tag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/refs/tag.py') 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" -- cgit v1.2.3