Allow serializer mixins to use __init__

Added a `super` call in `Field.__init__` so that serializer mixins can hook into the init function.
This commit is contained in:
Richard Eames 2014-04-11 11:19:23 -06:00
parent 93b9245b87
commit 127467f21e

View File

@ -147,6 +147,8 @@ class Field(object):
self._value = None
self._name = None
super(Field, self).__init__()
@property
def errors(self):
return self._errors