From 815b742006732b1ccdb665ba5c076fbb7b1e79c6 Mon Sep 17 00:00:00 2001 From: Ahmed Date: Sat, 20 Jun 2026 00:08:40 +0300 Subject: fix: bunch of vibed edits to fix vibed edits --- jeeves/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'jeeves/config.py') 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 — keys: {keys}", trigger.nick) + bot.notice(f"usage: !set . 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): -- cgit v1.2.3