From 3d6e1731b6324eba5abc029b26586f966db9fa4f Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 22 Dec 2016 12:48:59 +0100 Subject: chore(lint): fix --- git/refs/tag.py | 4 ++-- 1 file 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 -- cgit v1.2.1