#1652 closed defect (fixed)
sqlite backend executemany -> typo bug
Reported by: | ialbert | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | |
Severity: | critical | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There is a typo in
backends/sqlite/base.py
note how the last line uses a non existing parameter param
instead of param_list
def executemany(self, query, param_list): query = self.convert_query(query, len(param_list[0])) return Database.Cursor.executemany(self, query, param)
Note:
See TracTickets
for help on using tickets.
(In [2710]) magic-removal: Fixed #1652 -- Fixed typo in SQLite executemany()