Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#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)


Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2710]) magic-removal: Fixed #1652 -- Fixed typo in SQLite executemany()

Note: See TracTickets for help on using tickets.
Back to Top