Make the creator indexer return utf-8 to the catalog.

svn path=/plone.app.discussion/trunk/; revision=45735
This commit is contained in:
Yiorgis Gozadinos 2010-11-10 10:06:20 +00:00
parent d358a31c74
commit ab00fa3d99
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ def title(object):
@indexer(IComment)
def creator(object):
return object.creator
return object.creator.encode('utf-8')
@indexer(IComment)
def description(object):

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = '1.0RC1'
version = '1.0b12jarn-unicode'
setup(name='plone.app.discussion',
version=version,