summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-12-22 12:48:59 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-12-22 12:48:59 +0100
commit3d6e1731b6324eba5abc029b26586f966db9fa4f (patch)
tree11daf53ff3778230e8c270da768dbd7e32e9fe6c
parent82ae723c8c283970f75c0f4ce097ad4c9734b233 (diff)
downloadgitpython-3d6e1731b6324eba5abc029b26586f966db9fa4f.tar.gz
chore(lint): fix
-rw-r--r--git/refs/tag.py4
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