From 3a3123ecda265f9fa1becea878427d4d20a54f19 Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Thu, 2 Jun 2011 17:40:55 -0400 Subject: [PATCH] Added SlugTreeEntity to models.base.__all__. --- philo/models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.20.1