After upgrading to Django 1.0 I got the following error when using the new comment framework in one of my templates:
Caught an exception while rendering: Reverse for '' not found.
After some searching I read somewhere I had to delete the old .pyc files (from before the Django upgrade). After doing that, everything worked as it should!
Also, make sure you have the right path in your urls.py:
(r'^comments/', include('django.contrib.comments.urls')),
Hope this is usefull to anyone!
Discussion
No comments for “Error using New Comments in Django 1.0”
Post a comment