Commit 2e36e0c9 by jedavis83@gmail.com

Remove unneeded and incorrect self reference

parent 08e78185
......@@ -135,7 +135,7 @@ class BaseSerializer(Field):
# Add in the default fields
default_fields = self.get_default_fields()
for key, val in self.default_fields.items():
for key, val in default_fields.items():
if key not in ret:
ret[key] = val
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment