diff options
| author | Ahmed <git@gumx.cc> | 2026-06-20 00:08:40 +0300 |
|---|---|---|
| committer | Ahmed <git@gumx.cc> | 2026-06-20 00:08:40 +0300 |
| commit | 815b742006732b1ccdb665ba5c076fbb7b1e79c6 (patch) | |
| tree | 24db2809ae8c3290211ef2876c9c8e509f72b2e5 /jeeves/config.py | |
| parent | d60f3ce4d1996f207e2c693ae1102e6a5ddad701 (diff) | |
fix: bunch of vibed edits to fix vibed edits
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): |
