Skip to content
Marcelo1180 edited this page Dec 8, 2015 · 3 revisions

Hola yo tenia problemas con Django=1.8.6 con algunas librerias que se hallan "deprecated"

Edite el archivo registry.py

# from django.contrib.contenttypes.generic import GenericRelation

from django.contrib.contenttypes.fields import GenericRelation

# appmodels = get_models(app)

from django.apps import apps

appmodels = apps.get_models()

# apps = models.get_apps()

from django.apps import apps

apps = apps.get_app_configs()

Por sus equivalentes en esta nueva version de Django, me gustaria compartir puesto que django-dia me fue de gran utilidad :)

Clone this wiki locally