Commit 74b283ced478e890f5fc7657b8d48e7a6b7f996f

Authored by Matheus de Sousa Faria
1 parent 009e51b7

Fixing plugin apps import

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
colab_gitlab/apps.py
1 1
2 from django.utils.translation import ugettext_lazy as _ 2 from django.utils.translation import ugettext_lazy as _
3 3
4 -from colab.plugins.utils.apps import ColabProxiedAppConfig 4 +from colab.plugins.utils.apps import ColabPluginAppConfig
5 5
6 6
7 -class ProxyGitlabAppConfig(ColabProxiedAppConfig): 7 +class ProxyGitlabAppConfig(ColabPluginAppConfig):
8 name = 'colab_gitlab' 8 name = 'colab_gitlab'
9 verbose_name = 'Gitlab Proxy' 9 verbose_name = 'Gitlab Proxy'
10 10