Commit b2259bad by Tom Christie

Merge pull request #270 from phobologic/master

Prevent serialization from recursing to self
parents 49d2ea7c f3834aa2
...@@ -210,6 +210,9 @@ class Serializer(object): ...@@ -210,6 +210,9 @@ class Serializer(object):
Given a model instance or dict, serialize it to a dict.. Given a model instance or dict, serialize it to a dict..
""" """
data = {} data = {}
# Append the instance itself to the stack so that you never iterate
# back into the first object.
self.stack.append(instance)
fields = self.get_fields(instance) fields = self.get_fields(instance)
......
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