Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#19017 closed Bug (duplicate)

If command is called from code, it does not change locale to previous state

Reported by: andrey@… Owned by: nobody
Component: Core (Management commands) Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Currently code is:

        except CommandError, e:
             if show_traceback:
                 traceback.print_exc()
             else:
                 self.stderr.write(smart_str(self.style.ERROR('Error: %s\n' % e)))
             sys.exit(1)
        if saved_lang is not None:
            translation.activate(saved_lang)

So if command raises exception, translation is not restored

Attachments (1)

mgmt.patch (621 bytes ) - added by andrey@… 12 years ago.

Download all attachments as: .zip

Change History (4)

by andrey@…, 12 years ago

Attachment: mgmt.patch added

comment:1 by Claude Paroz, 12 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #17947 (already fixed). Thanks for the report, but try to look at latest code before submitting ticket and patch, this will save you time!

comment:2 by gugu, 12 years ago

Can somebody fix it in 1.4 branch?

comment:3 by Claude Paroz, 12 years ago

Same response that I gave for #19016, only security or crasher bugs in stable releases, sorry.

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