On 12/03/2012, at 4:25 AM, ScriptFlow wrote: > Hi guys, I'm correcting my system, and I was having some messages from > deprecated uses. But this, I'm trying to correct, unsuccessful. I'm > posting my code to you try to help me. Thank you all a lot! TG
The deprecation warning you're seeing is because you're making use of the old API for sending messages to a user. This API was deprecated in Django 1.2; the 1.2 release notes describe the change in detail: https://docs.djangoproject.com/en/1.2/releases/1.2/#user-messages-api I can't see any reference to user messages in the code you've provided -- but the code you have provided has some obvious references to other forms, models and so on. I'm guessing the problem lies with one of them. Yours, Russ Magee %-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

