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 | 1e142d3d013b1bc6348a29f58a8347107c6448c8 (patch) | |
tree | 9d92a4fb135862974cf6ef3dbc6d3de3f5f1c6f8 /install/local_settings.py.sample | |
parent | 33ce79ea699a381220d503c9f24fe24fcd46b089 (diff) | |
download | Ishtar-1e142d3d013b1bc6348a29f58a8347107c6448c8.tar.bz2 Ishtar-1e142d3d013b1bc6348a29f58a8347107c6448c8.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 |