Skip to content

Commit

Permalink
Fixed #411 -- CursorDebugWrapper now supports pyformat paramstyle
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3038 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 1, 2006
1 parent 350c360 commit 5c5d60a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django/db/backends/util.py
Expand Up @@ -12,6 +12,10 @@ def execute(self, sql, params=()):
return self.cursor.execute(sql, params)
finally:
stop = time()
# If params was a list, convert it to a tuple, because string
# formatting with '%' only works with tuples or dicts.
if not isinstance(params, (tuple, dict)):
params = tuple(params)
self.db.queries.append({
'sql': sql % tuple(params),
'time': "%.3f" % (stop - start),
Expand Down

0 comments on commit 5c5d60a

Please sign in to comment.