On Feb 9, 2010, at 5:24 PM, Mike Ramirez wrote:

> On Tuesday 09 February 2010 14:19:17 Nick Mellor wrote:
>> Thanks Shaun,
>> 
>> I renamed the "now" variable as "dt" but it didn't help. I've also
>> tried your 1-tuple idea-- no change.
>> 
>> Note that the offending line isn't the html assignment but:
>> 
>> now = datetime.datetime.now()
>> 
> 
> Make sure your import line is correct.
> 
> In [1]: import datetime
> 
> In [2]: datetime.datetime.now()
> Out[2]: datetime.datetime(2010, 2, 9, 14, 23, 25, 155503)
> 
> -


To clarify this, if you are doing:

from datetime import datetime

then you'd need to use datetime.now() instead of datetime.datetime.now().

Shawn

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