[1.7.x] Fixed #22773 -- Forced templatize() to return unicode

Backport of daaeb84158 from master.
This commit is contained in:
Claude Paroz 2014-06-06 08:40:04 +02:00
parent 7d388956ce
commit b236a55818
2 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ def templatize(src, origin=None):
from django.template import (Lexer, TOKEN_TEXT, TOKEN_VAR, TOKEN_BLOCK,
TOKEN_COMMENT, TRANSLATOR_COMMENT_MARK)
src = force_text(src, settings.FILE_CHARSET)
out = StringIO()
out = StringIO('')
message_context = None
intrans = False
inplural = False

View File