I may be mistaken, but I don't think you can decorate an entire "include" call
On Fri, Jan 23, 2015 at 8:51 PM, Neto <[email protected]> wrote: > Hi, I'm using login_required in url patterns but it does an error: > > urls.py > > from django.conf.urls import patterns, include, url > from django.contrib.auth.decorators import login_required > > > urlpatterns = patterns('', > url(r'^home/', login_required(include('home.urls'))), > > ) > > > error: > TypeError at /home/ > > 'tuple' object is not callable > > how to fix this? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/a0a93906-ce10-4b46-bb7a-67aa8d458a6c%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/a0a93906-ce10-4b46-bb7a-67aa8d458a6c%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALn3ei2hYP3NmjBfxGr_-QJbNusMS3D%3D2erN904FxqpNZMYKQg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

