workaround bug in sorl-thumbnail
[emels.git] / emels / settings / __init__.py
1 # -*- coding: utf-8 -*-
2
3 from .paths import *
4 from .basic import *
5 from .apps import *
6 from .locale import *
7 from .search import *
8 from .auth import *
9 from .cache import *
10 from .logging import *
11 from .middleware import *
12 from .contrib import *
13 from .static import *
14 from .custom import *
15
16 # Load localsettings, if they exist
17 try:
18     from emels.localsettings import *
19 except ImportError:
20     pass
21
22 # required by sorl-thumbnail
23 # remove when this is fixed:
24 # https://github.com/mariocesar/sorl-thumbnail/issues/476
25 TEMPLATE_DEBUG = False