Fixed #2246 -- Changed textile templatetag in contrib.markup to use DEFAULT_CHARSET setting

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-06-28 01:08:04 +00:00
parent 48562965b9
commit 5d7af7b1a9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def textile(value):
raise template.TemplateSyntaxError, "Error in {% textile %} filter: The Python textile library isn't installed."
return value
else:
return textile.textile(value)
return textile.textile(value, encoding=settings.DEFAULT_CHARSET, output=settings.DEFAULT_CHARSET)
def markdown(value):
try: