On Thu, 2006-07-27 at 20:47 +0000, Seth Buntin wrote: > I keep on getting "FieldDoesNotExist" errors. They are saying that a > field, in this case "p", doesn't exist. I don't know what it is > talking about because I am not trying to call "p".
My guess would be that you have a field list somewhere that is expecting a tuple and you have written a string in parentheses without a trailing comma (a one-tuple in Python needs the trailing comma). Look for any field you have that starts with the letter "p" -- Python is trying to iterate over a sequence and you have given it a string, so it does on character at a time in the string. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

