From f95f5a09ac36792cfb9a35b6bfae132586194f49 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 2 Dec 2004 14:13:57 +0000 Subject: [PATCH] I had the map(str, ...) there for a reason. --- plugins/Poll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Poll.py b/plugins/Poll.py index 5389e1610..7124047c0 100644 --- a/plugins/Poll.py +++ b/plugins/Poll.py @@ -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: