Opened 16 years ago

Closed 16 years ago

#6147 closed (fixed)

Typo in db/__init__.py::_import_database_module()

Reported by: guido@… Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The argument is named import_path, but the variable used in the body is _import_path. This makes the argument unused, which makes me think it's a bug. :-)

Attachments (1)

db_init.diff (634 bytes ) - added by guido@… 16 years ago.
Patch

Download all attachments as: .zip

Change History (3)

by guido@…, 16 years ago

Attachment: db_init.diff added

Patch

comment:1 by Simon G <dev@…>, 16 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Malcolm Tredinnick, 16 years ago

Resolution: fixed
Status: newclosed

(In [6903]) Fixed #6147 -- Typo fix (that amazingly didn't stop the code working) in the code for loading a database module. Thanks, guido@….

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