Commit 4eb17239 by Alex Gaynor

Fixed #6. Corrected an exception when you tried to serialize a model with a TaggableManager.

parent 482015db
...@@ -29,6 +29,7 @@ class TaggableManager(object): ...@@ -29,6 +29,7 @@ class TaggableManager(object):
self.creates_table = False self.creates_table = False
self.db_column = None self.db_column = None
self.choices = None self.choices = None
self.serialize = False
self.creation_counter = models.Field.creation_counter self.creation_counter = models.Field.creation_counter
models.Field.creation_counter += 1 models.Field.creation_counter += 1
......
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 sign in to comment