You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 322B

123456789101112
  1. from django.apps import AppConfig
  2. from django.utils.translation import ugettext_lazy as _
  3. class CustomerConfig(AppConfig):
  4. label = 'customer'
  5. name = 'oscar.apps.customer'
  6. verbose_name = _('Customer')
  7. def ready(self):
  8. from . import receivers # noqa
  9. from .alerts import receivers # noqa