You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
16 lines
364 B
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
from .settings import *
|
|
|
|
try:
|
|
from .local import *
|
|
except ImportError:
|
|
print("Can't find module settings.local! Make it from local.py.example")
|
|
|
|
# if manage.py test was called, use test settings
|
|
if 'test' in sys.argv or 'jenkins' in sys.argv:
|
|
try:
|
|
from .testing import *
|
|
except ImportError:
|
|
pass
|
|
|