I am getting the following error when trying to call model.save() from
a custom Manipulator
Traceback (most recent call last):
File
"/usr/local/lib/python2.4/site-packages/django/core/servers/basehttp.py",
line 272, in run
self.result = application(self.environ, self.start_response)
File
"/usr/local/lib/python2.4/site-packages/django/core/servers/basehttp.py",
line 614, in __call__
return self.application(environ, start_response)
File
"/usr/local/lib/python2.4/site-packages/django/core/handlers/wsgi.py",
line 189, in __call__
response = middleware_method(request, response)
File
"/usr/local/lib/python2.4/site-packages/django/contrib/sessions/middleware.py",
line 89, in process_response
datetime.datetime.now() +
datetime.timedelta(seconds=settings.SESSION_COOKIE_AGE))
File
"/usr/local/lib/python2.4/site-packages/django/contrib/sessions/models.py",
line 29, in save
s.save()
File
"/usr/local/lib/python2.4/site-packages/django/db/models/base.py", line
166, in save
cursor = connection.cursor()
File
"/usr/local/lib/python2.4/site-packages/django/db/backends/postgresql/base.py",
line 46, in cursor
cursor.execute("SET TIME ZONE %s", [settings.TIME_ZONE])
ProgrammingError: ERROR: current transaction is aborted, commands
ignored until end of transaction block
SET TIME ZONE 'GMT'
--- end Error ---
Any ideas?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---