From 2d06a1fc4a0010740cd3a45700bebf3ca74b865b Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 11 Sep 2013 22:59:13 +1200 Subject: [PATCH] patched! --- plugins/dictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dictionary.py b/plugins/dictionary.py index 478f77f..ca74c36 100755 --- a/plugins/dictionary.py +++ b/plugins/dictionary.py @@ -40,7 +40,7 @@ def define(inp): for article in sections: result += article[0] if len(article) > 2: - result += ' '.join('{}. {}'.format(n + 1, section) + result += u' '.join(u'{}. {}'.format(n + 1, section) for n, section in enumerate(article[1:])) else: result += article[1] + ' '