diff options
Diffstat (limited to 'jeeves/config.py')
| -rw-r--r-- | jeeves/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jeeves/config.py b/jeeves/config.py index 58d6484..0f2ea9d 100644 --- a/jeeves/config.py +++ b/jeeves/config.py @@ -29,19 +29,19 @@ def cmd_set(bot, trigger): if len(args) < 2: keys = ", ".join(sorted(jv.CONFIG_KEYS)) - bot.notice(f"usage: !set <key> <value> — keys: {keys}", trigger.nick) + bot.notice(f"usage: !set <key> <value>. keys: {keys}", trigger.nick) return key, raw = args[0].lower(), args[1] if key not in jv.CONFIG_KEYS: - bot.notice(f"unknown key '{key}' — use !config to see valid keys", trigger.nick) + bot.notice(f"unknown key '{key}'. use !config to see valid keys", trigger.nick) return typ, _, global_only, _ = jv.CONFIG_KEYS[key] if global_only and in_chan: - bot.notice(f"{key} is a global setting — use in PM to change it", trigger.nick) + bot.notice(f"{key} is a global setting. use in PM to change it", trigger.nick) return if global_only and not jv.is_owner(bot, trigger): |
