Django

Code

Ticket #1652 (closed: fixed)

Opened 3 years ago

Last modified 2 years ago

sqlite backend executemany -> typo bug

Reported by: ialbert Assigned to: adrian
Milestone: Component: Database layer (models, ORM)
Version: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: 0 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 0

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)

Attachments

Change History

04/17/06 15:55:20 changed by adrian

  • status changed from new to closed.
  • resolution set to fixed.

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


Add/Change #1652 (sqlite backend executemany -> typo bug)




Change Properties
Action