3 Commits

Author SHA1 Message Date
pe1hvh
8836d9dd6e fix(bbs_service): resolve NameError in _abbrev_table that crashed !h and !help(#v1.14.1)
_abbrev_table used a list comprehension inline inside a generator
expression filter. In Python 3, list comprehensions have their own
scope, so the loop variable 'cu' was not visible to the outer 'if'
condition — causing a NameError on every !h / !help DM command.

Extract the comprehension to a local variable 'cats_upper' so both
the iteration and the filter operate on the same pre-built list.
2026-03-16 11:20:55 +01:00
pe1hvh
72167ba130 HotFix3 2026-03-12 14:26:38 +01:00
pe1hvh
d8a7947c6b Initial clean code 2026-03-09 17:53:29 +01:00