Hello,
I have a class called Orders that tries to add the current date to
it's comments field when it's saved.  Here is my code:

from datetime import datetime

class Order(models.Model):
    comments = models.TextField("Comments", maxlength=1000)
    etc...

    def save(self):
        self.comments += "This is a string - " + datetime.now() + "
This is a string "

////////////

Whenever, I save my order class I get the following error:

TypeError at /admin/plush/order/1/
cannot concatenate 'str' and 'datetime.datetime' objects

Any Suggestions?


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