From 0af7d791cc9cd31142b6fa3fdfcb86e5bde1c13e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 2 Aug 2012 13:15:50 +0000 Subject: [PATCH] =?UTF-8?q?Add=20=C2=B0=20as=20a=20prefix=20character.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conf.py b/src/conf.py index 208864adc..1f4b90c9d 100644 --- a/src/conf.py +++ b/src/conf.py @@ -454,9 +454,9 @@ registerChannelValue(supybot.reply, 'showSimpleSyntax', help) rather than the full help."""))) class ValidPrefixChars(registry.String): - """Value must contain only ~!@#$%^&*()_-+=[{}]\\|'\";:,<.>/?""" + """Value must contain only ~!@#$%^&*()_-+=[{}]\\|'\";:,<.>/?°""" def setValue(self, v): - if v.translate(utils.str.chars, '`~!@#$%^&*()_-+=[{}]\\|\'";:,<.>/?'): + if v.translate(utils.str.chars, '`~!@#$%^&*()_-+=[{}]\\|\'";:,<.>/?°'): self.error() registry.String.setValue(self, v)