Since the error you are seeing is in 'project.app.urls' and the error
says "No
module named views", it seems that the statement that's failing in /
project/app/urls is this one:

from voting.views import vote_on_object

This would mean that voting.views is not a valid Python module:

1. Is there an __init__.py file in the "voting" directory?
2. Is the "voting" directory in your Python path?
3. Check that /voting/views.py has no errors and that it defines the
method vote_on_object.




--~--~---------~--~----~------------~-------~--~----~
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