summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMichael Denkowski <michael.j.denkowski@gmail.com>2012-12-28 01:31:25 -0500
committerMichael Denkowski <michael.j.denkowski@gmail.com>2012-12-28 01:31:25 -0500
commit4edfe5ae4bab6d158ef0a28fd9d5dd1d4e846fb0 (patch)
tree48e8fa950b723af43b6ec5850fb7eec1394301e7 /python
parent07efbe1156be5a4d92f4f76a1a0e44e9ef409a45 (diff)
Fix TypeError on __str__
Diffstat (limited to 'python')
-rw-r--r--python/src/sa/int_list.pxi2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/sa/int_list.pxi b/python/src/sa/int_list.pxi
index 55f5d174..79d67ad9 100644
--- a/python/src/sa/int_list.pxi
+++ b/python/src/sa/int_list.pxi
@@ -26,7 +26,7 @@ cdef class IntList:
ret += str(self.arr[idx])
ret += "]"
ret += "len="
- ret += self.len
+ ret += str(self.len)
return ret
def index(self, val):