On Tue, Mar 15, 2011 at 10:03 AM, hank23 <hversem...@stchas.edu> wrote:

> I get the following error whenever I try to go to the index screen of
> a new app. I've started:
>
> ViewDoesNotExist at /mymedia/
> Tried index in module mymedia.views. Error was: 'module' object has no
> attribute 'Text'
>
> I've not been able to see or find anything obvious in my urls.py at
> either the project or app. level. index is actually a coded view in my
> mymedia.views file. So what else can I do or try to figure out where
> the problem is?
>

The error is likely in your views.py, Django attempting to import it is
raising the noted error about no attribute Text. Easiest way to track it
down to exactly where in views.py is probably to try "from mymedia import
views" at a manage.py shell prompt.

Karen
-- 
http://tracey.org/kmt/

-- 
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 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to