diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-02-10 15:59:04 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-07-01 18:02:28 +0200 |
commit | 088ea2bd63e1a22c2968f3bf8ae7a4387e66ba14 (patch) | |
tree | 9d92a4fb135862974cf6ef3dbc6d3de3f5f1c6f8 /install/local_settings.py.sample | |
parent | a7ded053dff84acfb8a3c9073f475843f65fb7b9 (diff) | |
download | Ishtar-088ea2bd63e1a22c2968f3bf8ae7a4387e66ba14.tar.bz2 Ishtar-088ea2bd63e1a22c2968f3bf8ae7a4387e66ba14.zip |
Adapt for management with multiple packages
Diffstat (limited to 'install/local_settings.py.sample')
-rw-r--r-- | install/local_settings.py.sample | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/install/local_settings.py.sample b/install/local_settings.py.sample index 7c6bac348..0f373ebcf 100644 --- a/install/local_settings.py.sample +++ b/install/local_settings.py.sample @@ -43,3 +43,13 @@ except ImportError as e: from .extra_settings import * # relative import for celery except ImportError as e: print('Unable to load extra_settings.py:', e) + +try: + from tasks_settings import * +except ImportError as e: + pass + +try: + from libreoffice_settings import * +except ImportError as e: + pass |