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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to