Opened 15 years ago

Closed 12 years ago

#11118 closed Bug (fixed)

BaseCommand doesn't restore translation

Reported by: rvdrijst Owned by: nobody
Component: Core (Management commands) Version: dev
Severity: Normal Keywords: basecommand execute syncdb translation testing
Cc: rvdrijst@… 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 implementation of BaseCommand.execute() sets the translation to 'en-us' for the duration of the command execution, but doesn't restore the original translation. This is not a problem when execution stops when the command is done (command line use)

However in tests, the syncdb command is called programmatically, running the tests with the 'en-us' translation activated even when this is not the same as settings.LANGUAGE_CODE.

The attached patch fixes this by restoring the language that was activated when the command started.

Note: this ticket is related to #10078, but whereas that ticket is about documentation, this ticket fixes a bug.

Attachments (2)

basecommand.diff (1.5 KB ) - added by rvdrijst 15 years ago.
patch with fix (restore translation)
11118-2.diff (2.1 KB ) - added by Claude Paroz 13 years ago.
Simplify patch and add test

Download all attachments as: .zip

Change History (7)

by rvdrijst, 15 years ago

Attachment: basecommand.diff added

patch with fix (restore translation)

comment:1 by Alex Gaynor, 15 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Julien Phalip, 13 years ago

Needs tests: set
Severity: Normal
Type: Bug

by Claude Paroz, 13 years ago

Attachment: 11118-2.diff added

Simplify patch and add test

comment:3 by Claude Paroz, 13 years ago

Component: Core (Other)Core (Management commands)
Easy pickings: unset
Needs tests: unset
UI/UX: unset

comment:4 by Ramiro Morales, 13 years ago

Triage Stage: AcceptedReady for checkin

comment:5 by Ramiro Morales, 12 years ago

Resolution: fixed
Status: newclosed

In [17077]:

Fixed #11118 -- Made management command BaseCommand restore locale after execution.

Thanks rvdrijst for the report and initial patch and Claude Paroz for enhancing it.

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