Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 692aeca

Browse files
author
mtredinnick
committed
Fixed a bug introduced in r9422.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent 0fc7034 commit 692aeca

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

django/template/defaultfilters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,7 @@ def join(value, arg, autoescape=None):
485485
"""
486486
Joins a list with a string, like Python's ``str.join(list)``.
487487
"""
488+
value = map(force_unicode, value)
488489
if autoescape:
489490
from django.utils.html import conditional_escape
490491
value = [conditional_escape(v) for v in value]

0 commit comments

Comments
 (0)