mirror of
https://github.com/django/django.git
synced 2025-03-05 23:12:32 +00:00
Readded comment about the default params of cursor.execute().
It was removed in in 728548e483a5a3486939b0c8e62520296587482e.
This commit is contained in:
parent
3166880301
commit
6d37c089ae
@ -80,6 +80,7 @@ class CursorWrapper:
|
||||
self.db.validate_no_broken_transaction()
|
||||
with self.db.wrap_database_errors:
|
||||
if params is None:
|
||||
# params default might be backend specific.
|
||||
return self.cursor.execute(sql)
|
||||
else:
|
||||
return self.cursor.execute(sql, params)
|
||||
|
Loading…
x
Reference in New Issue
Block a user