diff --git a/colab/settings.py b/colab/settings.py index 39025eb..06cb711 100644 --- a/colab/settings.py +++ b/colab/settings.py @@ -328,3 +328,10 @@ for app_name, app in COLAB_APPS.items(): STATICFILES_DIRS += (template.get('staticdir'),) if template.get('templatesdir'): TEMPLATE_DIRS += (template.get('templatesdir'),) + +import sys +sys.path.insert(0, '/etc/colab/') +try: + from plugin_configs import * +except ImportError: + pass -- libgit2 0.21.2