Skip to content

Commit

Permalink
Fixed a regression in the Postgres psycopg cursor handling introduced…
Browse files Browse the repository at this point in the history
… by r12352. Thanks to Kenneth Gonsalves for the report, and Karen for the fix.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12378 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Feb 3, 2010
1 parent 8e5c116 commit b740534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/postgresql/base.py
Expand Up @@ -54,7 +54,7 @@ def format_params(self, params):

def execute(self, sql, params=()):
try:
return self.cursor.execute(sql, params)
return self.cursor.execute(smart_str(sql, self.charset), self.format_params(params))
except Database.IntegrityError, e:
raise utils.IntegrityError, utils.IntegrityError(*tuple(e)), sys.exc_info()[2]
except Database.DatabaseError, e:
Expand Down

0 comments on commit b740534

Please sign in to comment.