On Wed, 2006-10-04 at 00:41 +0000, gkelly wrote: > I am getting the following error when trying to call model.save() from > a custom Manipulator > > Traceback (most recent call last): [...] > ProgrammingError: ERROR: current transaction is aborted, commands > ignored until end of transaction block > > SET TIME ZONE 'GMT' > --- end Error --- > > Any ideas?
Often this indicates there was actually an error on the previous statement and it is only detected/reported on the next query. To try and track this down, have a look at the contents of django.db.connection.queries (it's a list) just before the statement that throws the error (or even print it out inside django/db/backend/util.py (in CursorDebugWrapper.execute()) each time. 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 -~----------~----~----~----~------~----~------~--~---

