You should not have both;
(r'^$',          include('basicBlog.blog.urls')),
(r'^blog/',      include('basicBlog.blog.urls')),

since now your reverse is going to match two diffrent URL,
/2008/nov/21/secondPost/
and
/blog/2008/nov/21/secondPost/
thus cause the NoReverseMatch error since reverse should match one and
only one url

Dj Gilcrease
OpenRPG Developer
~~http://www.openrpg.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to