From 1a2ed2724b2bf09e498c0da45abbc3e410221f51 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Mon, 2 May 2016 15:15:22 -0400 Subject: [PATCH] BUG: Pass correct class to super call. --- zipline/lib/adjustment.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/lib/adjustment.pyx b/zipline/lib/adjustment.pyx index 8708b2e6..b0ba1873 100644 --- a/zipline/lib/adjustment.pyx +++ b/zipline/lib/adjustment.pyx @@ -558,7 +558,7 @@ cdef class _ObjectAdjustment(Adjustment): Py_ssize_t first_col, Py_ssize_t last_col, object value): - super(Adjustment, self).__init__( + super(_ObjectAdjustment, self).__init__( first_row=first_row, last_row=last_row, first_col=first_col,