aboutsummaryrefslogtreecommitdiffstats
path: root/jeeves/config.py
diff options
context:
space:
mode:
authorAhmed <git@gumx.cc>2026-06-20 00:08:40 +0300
committerAhmed <git@gumx.cc>2026-06-20 00:08:40 +0300
commit815b742006732b1ccdb665ba5c076fbb7b1e79c6 (patch)
tree24db2809ae8c3290211ef2876c9c8e509f72b2e5 /jeeves/config.py
parentd60f3ce4d1996f207e2c693ae1102e6a5ddad701 (diff)
fix: bunch of vibed edits to fix vibed edits
Diffstat (limited to 'jeeves/config.py')
-rw-r--r--jeeves/config.py6
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):