lingo: update module references to match after-merge location

This commit is contained in:
Frédéric Péters 2015-12-25 21:15:43 +01:00
parent b3f68df240
commit 6cb1097b75
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class Plugin(object):
class AppConfig(django.apps.AppConfig):
name = 'lingo'
name = 'combo.apps.lingo'
def get_before_urls(self):
from . import urls
@ -34,4 +34,4 @@ class AppConfig(django.apps.AppConfig):
return [{'href': reverse('lingo-manager-homepage'),
'text': _('Online Payment')}]
default_app_config = 'lingo.AppConfig'
default_app_config = 'combo.apps.lingo.AppConfig'

View File

@ -64,6 +64,7 @@ INSTALLED_APPS = (
'combo.apps.publik',
'combo.apps.family',
'combo.apps.dataviz',
'combo.apps.lingo',
'xstatic.pkg.chartnew_js',
)