Check your urls. For me it looks like you wanted to give name to the url but forgot use keyword argument. For example you could be having:
url(r"^#", "your_view", "name_of_the_view") instead of url(r"^#", "your_view", name="name_of_the_view") -- Marek Brzóska [email protected] -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

