I had the map(str, ...) there for a reason.

This commit is contained in:
James Vega 2004-12-02 14:13:57 +00:00
parent c8bdb45a2c
commit f95f5a09ac
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class PollRecord(dbi.Record):
format = conf.supybot.humanTimestampFormat()
user = plugins.getUserName(self.by)
if self.options:
options = 'Options: %s' % '; '.join(self.options)
options = 'Options: %s' % '; '.join(map(str, self.options))
else:
options = 'The poll has no options, yet'
if self.status: