Yang Hongyang 3a214fbdee Make defaults can be override by local settings
Make defaults can be override by local settings, it is useful because
users might use non-standard SSH ports and so on.

Change-Id: Ic30e611f73ce844848efb452b53f86242be9219d
2016-02-07 00:14:23 +08:00

11 lines
340 B
Python

from astara_router.defaults import * # noqa
# If astara_local_settings.py is located in your python path,
# it can be used to override the defaults. DIB will install this
# into /usr/local/share/astara and append that path to the gunicorn's
# python path.
try:
from astara_local_settings import * # noqa
except ImportError:
pass