Re: 'django.contrib.comments', Error: No module named comments. Can someone explain why?

2010-07-12 Thread Oleg Lomaka
You already have correct 'django.contrib.comments' in INSTALLED_APPS. Why did 
you add another 'comments' as last element?

On Jul 12, 2010, at 4:14 PM, justin jools wrote:

> I've set up basic blog with, all running fine but when I runserver I
> get Error: No module named comments. I've checked the Python path
> (below) and the app/function is there.  Can someone explain why it is
> isn't finding this when it finds all other installed apps e.g. markup,
> tagging.
> 
> C:\Python26\Lib\site-packages\django\contrib\comments
> 
> INSTALLED_APPS = (
>'django.contrib.auth',
>'django.contrib.contenttypes',
>'django.contrib.sessions',
>'django.contrib.sites',
>'django.contrib.admin',
>'django.contrib.comments',
>'django.contrib.markup',
>'portfolio',
>'basic.blog',
>'basic.inlines',
>'tagging',
>'comments',
> )

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



'django.contrib.comments', Error: No module named comments. Can someone explain why?

2010-07-12 Thread justin jools
I've set up basic blog with, all running fine but when I runserver I
get Error: No module named comments. I've checked the Python path
(below) and the app/function is there.  Can someone explain why it is
isn't finding this when it finds all other installed apps e.g. markup,
tagging.

C:\Python26\Lib\site-packages\django\contrib\comments

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.comments',
'django.contrib.markup',
'portfolio',
'basic.blog',
'basic.inlines',
'tagging',
'comments',
)

Many Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.