summaryrefslogtreecommitdiff
path: root/lib/git/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/utils.py')
-rw-r--r--lib/git/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/utils.py b/lib/git/utils.py
index 15102fec..1fb58861 100644
--- a/lib/git/utils.py
+++ b/lib/git/utils.py
@@ -366,7 +366,7 @@ class IterableList(list):
try:
return getattr(self, index)
except AttributeError:
- raise IndexError( "No item found with id %r" % self._prefix + index )
+ raise IndexError( "No item found with id %r" % (self._prefix + index) )
class Iterable(object):
"""