Files @ 6b9e083a27c3
Branch filter:

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

Christopher Neugebauer
Americanise^W Americanizes the dates on the home page.
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

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