One trick I've found that helps in debugging is to throw out all assumptions, and to work backwards from a traceback while doing so.

In your case, Python is telling you that what you *think* and what *really ought to be* a DateTime object is instead a string. So, double-check--print out the value of type(object.datetimefield) sometime just prior to where the traceback hits. Do a dir() on it. Stuff like that. It seems dumb and simple but it often helps.

The other thing is to look at the differences between the two environments, or between what you're doing in the prompt and what's happening in the view. Again, throw out assumptions and double-check *everything* surrounding the problem object.

One thing that might help us target specific things going wrong is if you pasted the model class definition, and what specifically you're doing in the prompt to try and simulate the problematic view code.

Regards,
Jeff

On Nov 11, 2005, at 8:46 PM, Pedro Furtado wrote:


Turn it into a date, datetime or time object first, then format it.
Like the traceback says, strings don't have strftime
attributes/methods.

But it already is a datetime object. The "object" I stated is an
object of a model class, which contains a datetimefield. Am I clear
now?

The code runs smoothly in Python prompt but not in views.

Pedro

--
Pedro Furtado
Juiz de Fora - MG


--
Jeffrey E. Forcier
Junior Developer, Research and Development
Stroz Friedberg, LLC
15 Maiden Lane, 12th Floor
New York, NY 10038
[main]212-981-6540 [direct]212-981-6546
http://www.strozllc.com

This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information. No right to
confidential or privileged treatment of this message is waived or lost
by any error in transmission.  If you have received this message in
error, please immediately notify the sender by e-mail or by telephone at
212.981.6540, delete the message and all copies from your system and
destroy any hard copies.  You must not, directly or indirectly, use,
disclose, distribute, print or copy any part of this message if you are
not the intended recipient.

Reply via email to