diff options
author | Michael Denkowski <michael.j.denkowski@gmail.com> | 2012-12-28 01:31:25 -0500 |
---|---|---|
committer | Michael Denkowski <michael.j.denkowski@gmail.com> | 2012-12-28 01:31:25 -0500 |
commit | 2e6bccbb5d4a69d00d33db934f8724082f0568a7 (patch) | |
tree | 0e8b08cd595211b9045c29fb85936ce13f842b3c /python | |
parent | 608d670b9d94805aacfb94b96b7e1659881630b2 (diff) |
Fix TypeError on __str__
Diffstat (limited to 'python')
-rw-r--r-- | python/src/sa/int_list.pxi | 2 |
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): |