On Sun, Jun 13, 2010 at 9:06 PM, JRMAbock <joshua.matl...@comcast.net>wrote:

> if i do that i get this error
>
> 'module' object has no attribute 'current_datetime'
>


So the Python interpreter cannot find current_datetime defined in your views
module. The code you showed for it also would have caused Python to report a
indentation error (unexpected indent) on the line "html = "<html><body>..."
-- this line, as shown, was indented farther than the preceding line, and
Python would not accept that. So the code you have shown somehow isn't being
seen by the Python interpreter....

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

Reply via email to