Move all settings files from <app>/conf/settings.py to <app>/settings.py

This commit is contained in:
Roberto Rosario
2014-09-11 05:02:40 -04:00
parent c8d1b7bed7
commit b761037d99
75 changed files with 107 additions and 107 deletions

View File

@@ -7,13 +7,13 @@ from django.utils.translation import ugettext_lazy as _
from metadata.classes import MetadataClass
from .conf.settings import (AVAILABLE_INDEXING_FUNCTIONS,
MAX_SUFFIX_COUNT, SLUGIFY_PATHS)
from .exceptions import MaxSuffixCountReached
from .filesystem import (fs_create_index_directory,
fs_create_document_link, fs_delete_document_link,
fs_delete_index_directory, assemble_suffixed_filename)
from .filesystem import (fs_create_index_directory, fs_create_document_link,
fs_delete_document_link, fs_delete_index_directory,
assemble_suffixed_filename)
from .models import Index, IndexInstanceNode, DocumentRenameCount
from .settings import (AVAILABLE_INDEXING_FUNCTIONS, MAX_SUFFIX_COUNT,
SLUGIFY_PATHS)
if SLUGIFY_PATHS:
SLUGIFY_FUNCTION = slugify