From: Stephen Burrows Date: Thu, 2 Jun 2011 21:40:55 +0000 (-0400) Subject: Added SlugTreeEntity to models.base.__all__. X-Git-Tag: philo-0.9~7^2~2 X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/3a3123ecda265f9fa1becea878427d4d20a54f19 Added SlugTreeEntity to models.base.__all__. --- diff --git a/philo/models/base.py b/philo/models/base.py index f9c22f9..86569b7 100644 --- a/philo/models/base.py +++ b/philo/models/base.py @@ -16,7 +16,7 @@ from philo.utils.entities import AttributeMapper, TreeAttributeMapper from philo.validators import json_validator -__all__ = ('Tag', 'value_content_type_limiter', 'register_value_model', 'unregister_value_model', 'JSONValue', 'ForeignKeyValue', 'ManyToManyValue', 'Attribute', 'Entity', 'TreeEntity') +__all__ = ('Tag', 'value_content_type_limiter', 'register_value_model', 'unregister_value_model', 'JSONValue', 'ForeignKeyValue', 'ManyToManyValue', 'Attribute', 'Entity', 'TreeEntity', 'SlugTreeEntity') class Tag(models.Model):