diff options
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): | 
