From c2f42bbcd99e231d46e63b9f38b6c3f745046157 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 17 Oct 2014 22:49:31 -0400 Subject: [PATCH] Remove reference to unused model --- mayan/apps/tags/registry.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/mayan/apps/tags/registry.py b/mayan/apps/tags/registry.py index ebe8b9fb9b..377641137b 100644 --- a/mayan/apps/tags/registry.py +++ b/mayan/apps/tags/registry.py @@ -4,12 +4,8 @@ from .cleanup import cleanup bootstrap_models = [ { - 'name': 'taggit.tag', - 'sanitize': False, - }, - { - 'name': 'tagproperties', - 'dependencies': ['taggit.tag'] + 'name': 'tag', + 'dependencies': ['documents.document'] } ] cleanup_functions = [cleanup]