Commit 07ea15cb1214efda7b07812dd6603b1d40609727

Authored by Lucas Kanashiro
1 parent 5046caaf

Fix app_label in plugins/conf.py

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
colab/plugins/conf.py
... ... @@ -3,4 +3,4 @@ from django.conf import settings
3 3  
4 4  
5 5 def get_plugin_config(app_label):
6   - return settings.COLAB_APPS.get('gitlab', {})
  6 + return settings.COLAB_APPS.get(app_label, {})
... ...