mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
b685fa74d6
Loading not versioned settings.py during tests make them less predictable. That's inspired from django behaviour with DJANGO_SETTING_MODULE environment variable.
10 lines
153 B
Python
10 lines
153 B
Python
"""
|
|
Merges default settings with user-defined settings
|
|
"""
|
|
|
|
from default_settings import *
|
|
|
|
try:
|
|
from settings import *
|
|
except ImportError:
|
|
pass
|