move settings from __init__.py
[wolnelektury.git] / src / wolnelektury / settings / __init__.py
1 # -*- coding: utf-8 -*-
2 # Django settings for wolnelektury project.
3 from .apps import *
4 from .basic import *
5 from .auth import *
6 from .cache import *
7 from .celery import *
8 from .contrib import *
9 from .custom import *
10 from .locale import *
11 from .static import *
12 from .paths import *
13
14 # Load localsettings, if they exist
15 try:
16     from wolnelektury.localsettings import *
17 except ImportError:
18     pass