Patrick
Patrick

Reputation: 21

django threadedcomments

I would like to setup a comment systems on my site, using django threadedcomments, and I follow all the steps in the Tutorial, however, I get the following error:

No module named newforms.util

I am not sure what causing this issue, here is my configuration:

#settings.py
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',    
    'myproject.myapp',
    'threadedcomments',    
)


#urls.py

from django.conf import settings
from django.conf.urls.defaults import *
from django.contrib import admin

admin.autodiscover()

urlpatterns = patterns('',

    (r'^admin/', include(admin.site.urls)),
    (r'^threadedcomments/', include('threadedcomments.urls')),
)

Please let me know if there is another better choice for commenting, as long as the comment system is flexible and able to do lot of customization, as well as threadedcomment, of coz, integrating with Rating, I am happy to use the other one.

Thanks guys.

Upvotes: 2

Views: 844

Answers (1)

Olivier Verdier
Olivier Verdier

Reputation: 49146

You are most probably using a very old version of one of your apps. The newforms module has disappeared from django a long time ago.

Upvotes: 4

Related Questions