diff options
-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 dc7d020d..37ee1240 100644 --- a/git/refs/tag.py +++ b/git/refs/tag.py @@ -31,8 +31,8 @@ class TagReference(Reference): # it is a tag object which carries the commit as an object - we can point to anything obj = obj.object else: - raise ValueError(("Cannot resolve commit as tag %s points to a %s object - " - + "use the `.object` property instead to access it") % (self, obj.type)) + raise ValueError(("Cannot resolve commit as tag %s points to a %s object - " + + "use the `.object` property instead to access it") % (self, obj.type)) return obj @property |