From ae5f33393e68c99e713fc6448c9e4025be377bda Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 5 Sep 2014 21:41:55 +0300 Subject: [PATCH] Dict: use `*` as default dictionary The config help is unclear as it talks about `*` meaning all dictionaries while having default value as empty string. --- plugins/Dict/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Dict/config.py b/plugins/Dict/config.py index 4ac2452d3..3f4f06bb1 100644 --- a/plugins/Dict/config.py +++ b/plugins/Dict/config.py @@ -45,8 +45,8 @@ conf.registerGlobalValue(Dict, 'server', registry.String('dict.org', _("""Determines what server the bot will retrieve definitions from."""))) conf.registerChannelValue(Dict, 'default', - registry.String('', _("""Determines the default dictionary the bot will - ask for definitions in. If this value is '*' (without the quotes) the bot - will use all dictionaries to define words."""))) + registry.String('*', _("""Determines the default dictionary the bot + will ask for definitions in. If this value is '*' (without the quotes) + the bot will use all dictionaries to define words."""))) # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: