Opened 17 years ago

Closed 17 years ago

#3900 closed (fixed)

make-messages.py ImportError: cannot import name templatize

Reported by: Wiliam Alves de Souza <wiliamsouza83@…> Owned by: hugo
Component: Internationalization Version: dev
Severity: Keywords: make-messages.py, templatize
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Changes made in http://code.djangoproject.com/changeset/4905 break make-messages.py

wiliam@wiliam:/mnt/hdb1/dev/django/django$ bin/make-messages.py
Traceback (most recent call last):

File "bin/make-messages.py", line 7, in <module>

from django.utils.translation import templatize

ImportError: cannot import name templatize

Attachments (1)

make-messages.diff (430 bytes ) - added by Wiliam Alves de Souza <wiliamsouza83@…> 17 years ago.

Download all attachments as: .zip

Change History (4)

by Wiliam Alves de Souza <wiliamsouza83@…>, 17 years ago

Attachment: make-messages.diff added

comment:1 by Gary Wilson <gary.wilson@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Malcolm Tredinnick, 17 years ago

Has patch: unset
Triage Stage: Ready for checkinAccepted

I'd prefer to avoid importing anything directly from trans_real or trans_null, for consistency. But it should be easy enough to fix this any way.

comment:3 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [4907]) Fixed #3900 -- Included missing function in utils/translation/init.py.

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