diff options
author | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-12-28 10:28:55 +0100 |
---|---|---|
committer | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-12-28 10:28:55 +0100 |
commit | f60f6a0c753ad9365ab29f9ba0fa6bfdfe0ed3a2 (patch) | |
tree | 3a69ef50902265156946032e9e7e030953b96545 /python/src/sa/int_list.pxi | |
parent | 0e48f7418f3d0a66563d1e0f1a21f3ccae541852 (diff) | |
parent | a8c0f7ae3b1c3c1219eed1b382ef6ee5bd9cf0f3 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'python/src/sa/int_list.pxi')
-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): |