Files @ 3037344a8f2b
Branch filter:

Location: copyleftconf-website-fork/pinaxcon/apps.py

Christopher Neugebauer
More about/northbaypython and about/petaluma stuff
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

    def ready(self):
        import_module("pinaxcon.receivers")