mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
98ea1c8873
Conflicts: conf/nginx.conf sources/budget/run.py sources/budget/utils.py
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
|