From 0b69f778cfc73692f26cef5162d9bc32d74aff74 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 26 Jul 2012 06:47:33 -0400 Subject: [PATCH] Reorganize app loading order to avoid import errors --- settings.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/settings.py b/settings.py index a5eff1e634..898342e462 100644 --- a/settings.py +++ b/settings.py @@ -164,22 +164,22 @@ INSTALLED_APPS = ( 'installation', # Mayan EDMS 'storage', + 'documents', + 'metadata', 'folders', 'tags', 'document_comments', - 'metadata', - 'documents', 'linking', - 'bootstrap', + 'document_indexing', + 'sources', 'document_acls', 'ocr', - 'sources', 'history', 'main', 'rest_api', 'document_signatures', 'checkouts', - 'document_indexing', + 'bootstrap', # Has to be last so the other apps can register it's signals 'signaler',