Re: ValueError at /pages/

2008-09-01 Thread Leaf
Well, as it turns out, my URLConf looked something like: urlpatterns = patterns('devsite.djpages.views', (r'(?P\w+)/$', 'display_page', 'dj_pages_display'), (r'$', 'display_page', 'dj_pages_default'), ) The default value for the second one was processed by putting "pagename=GET_DEFAULT_F

Re: ValueError at /pages/

2008-09-01 Thread Malcolm Tredinnick
On Mon, 2008-09-01 at 10:39 -0700, Leaf wrote: > All the info is at http://dpaste.com/75250/. I really have no idea > what this error is trying to tell me. Can anyone explain what it might > be? It's an internal Python error that is raised when you try to update a dictionary with bad data. What