diff --git a/cabot/urls.py b/cabot/urls.py index 72c1f27..72e2a60 100644 --- a/cabot/urls.py +++ b/cabot/urls.py @@ -150,7 +150,7 @@ def append_plugin_urls(): try: _module = import_module('%s.urls' % plugin) except Exception as e: - logger.error('No url file available for plugin %s' % plugin) + pass else: urlpatterns += patterns('', url(r'^plugins/%s/' % plugin, include('%s.urls' % plugin)) diff --git a/conf/development.env.example b/conf/development.env.example index 91dba1f..a44ea90 100644 --- a/conf/development.env.example +++ b/conf/development.env.example @@ -1,5 +1,5 @@ # Plugins to be loaded at launch -CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email +CABOT_PLUGINS_ENABLED=cabot_alert_hipchat==1.6.1,cabot_alert_twilio==1.6.1,cabot_alert_email==1.3.1 DEBUG=t DATABASE_URL=sqlite:///dev.db diff --git a/conf/production.env.example b/conf/production.env.example index 54ad4c4..142663d 100644 --- a/conf/production.env.example +++ b/conf/production.env.example @@ -1,5 +1,5 @@ # Plugins to be loaded at launch -CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email +CABOT_PLUGINS_ENABLED=cabot_alert_hipchat==1.6.1,cabot_alert_twilio==1.1.4,cabot_alert_email==1.3.1 DATABASE_URL=postgres://cabot:cabot@localhost:5432/index DJANGO_SETTINGS_MODULE=cabot.settings