From 728ad5788b13f4f9d543606bf9ff1acf8ceb6c2e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 24 Sep 2004 14:20:15 +0000 Subject: [PATCH] This was needed, so our stuff doesn't get quoted. --- src/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/conf.py b/src/conf.py index 7eb6f3e1c..d0b74162b 100644 --- a/src/conf.py +++ b/src/conf.py @@ -509,6 +509,9 @@ class ValidQuotes(registry.Value): if [c for c in v if c not in '"`\'']: self.error() super(ValidQuotes, self).setValue(v) + + def __str__(self): + return str(self.value) registerChannelValue(supybot.commands, 'quotes', ValidQuotes('"', """Determines what characters are valid for quoting