Closed pauk-slon closed 7 years ago
Take look at a call of the base class' constructor here.
class HttpProxy(View): ... def __init__(self, *args, **kwargs): return super(View, self).__init__(*args, **kwargs)
It must be return super(HttpProxy, self).__init__(*args, **kwargs).
return super(HttpProxy, self).__init__(*args, **kwargs)
Yikes. Thanks for the report. I'll ship a new version today.
Take look at a call of the base class' constructor here.
It must be
return super(HttpProxy, self).__init__(*args, **kwargs)
.