9 lines
95 B
Python
9 lines
95 B
Python
|
from .base import *
|
||
|
|
||
|
DEBUG = False
|
||
|
|
||
|
try:
|
||
|
from .local import *
|
||
|
except ImportError:
|
||
|
pass
|