Python - Specifying a namespace in include() without providing an app_name

 
Vista:

Specifying a namespace in include() without providing an app_name

Publicado por rene (1 intervención) el 18/06/2018 22:05:52
Hola amigos, me he estado rompiendo la cabeza con un problema con los namespace en python. Soy nuevo con el framework, estoy siguiendo un tutorial paso a paso. Pero me ocurre un error, el cual no aparece en el video, q ya me está trayendo bastantes problemas, espero puedan ayudarme:

tengo declarado este namespace:
1
2
3
4
urlpatterns = [
...
     url(r'^mascota/', include('apps.mascota', namespace='mascota')),
]
y el error q me muestra es este:
'Specifying a namespace in include() without providing an app_name '
django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute in the included module, or pass a 2-tuple containing the list of patterns and app_name instead.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder