Remove unnecessary decode statement from creator.

svn path=/plone.app.discussion/trunk/; revision=40503
This commit is contained in:
Timo Stollenwerk 2010-10-04 13:48:54 +00:00
parent 0ee649fb6c
commit 9841ba7229
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ class Comment(CatalogAware, WorkflowAware, DynamicType, Traversable,
default=u"Anonymous")))
else:
creator = self.creator
creator = creator.decode("utf-8")
creator = creator
# Fetch the content object (the parent of the comment is the
# conversation, the parent of the conversation is the content object).