From e2de2784bc2dfc4f0a476c883aecef949e9c5848 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 22 Apr 2004 04:28:54 +0000 Subject: [PATCH] Allow the empty string for supybot.brackets, so users can turn off command nesting. --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index 9616f3027..303d91e4a 100644 --- a/src/conf.py +++ b/src/conf.py @@ -220,7 +220,7 @@ nested commands. If this option is enabled users can nest commands using a bracket syntax, for example: 'bot: bar [foo]'.""")) class ValidBrackets(registry.OnlySomeStrings): - validStrings = ('[]', '<>', '{}', '()') + validStrings = ('', '[]', '<>', '{}', '()') supybot.register('brackets', ValidBrackets('[]', """Supybot allows you to specify what brackets are used for your nested commands. Valid sets of