#10151: url tag causes TypeError: dict objects are unhashable
------------------------------------+---------------------------------------
Reporter: pclerie | Owner: nobody
Status: closed | Milestone:
Component: Uncategorized | Version: 1.0
Resolution: worksforme | Keywords:
Stage: Unreviewed | Has_patch: 0
Needs_docs: 0 | Needs_tests: 0
Needs_better_patch: 0 |
------------------------------------+---------------------------------------
Comment (by zack):
This is caused by a programming error.
I just had the same error message (Django 1.1.1)
It was caused by an error in my url conf.
I had a line like :
{{{
('^huur/indoor/$', {},'huur_indoor'),
}}}
Which should have been like:
{{{
('^huur/indoor/$', 'xl.views.huur_indoor', {},'huur_indoor'),
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/10151#comment:3>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.