diff -r 03d4200ae809 -r 92b01b214192 src/hdalab/apps.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/hdalab/apps.py Tue Mar 24 12:24:28 2015 +0100 @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +''' +Created on Mar 19, 2015 + +@author: ymh +''' + +from __future__ import absolute_import + +from django.apps import AppConfig + + +class HdalabAppConfig(AppConfig): + + name = "hdalab" + verbose_name = "HdaLab" + + def ready(self): + from .celery import app as celery_app # @UnusedImport + import hdalab.signals # @UnusedImport \ No newline at end of file