blob: 4e515d8a009ba419335078fc9ed0c095fe9aa2b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.apps import AppConfig
from django.contrib.contenttypes.checks import check_generic_foreign_keys
from django.core import checks
from django.utils.translation import ugettext_lazy as _
class ContentTypesConfig(AppConfig):
name = 'django.contrib.contenttypes'
verbose_name = _("content types")
def ready(self):
checks.register('models')(check_generic_foreign_keys)
|