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 | 4edfe5ae4bab6d158ef0a28fd9d5dd1d4e846fb0 (patch) | |
tree | 48e8fa950b723af43b6ec5850fb7eec1394301e7 | |
parent | 07efbe1156be5a4d92f4f76a1a0e44e9ef409a45 (diff) |
Fix TypeError on __str__
-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): |