add plucky to package command

This commit is contained in:
Nils Büchner 2025-02-09 14:23:53 +01:00
parent c8908b4b5c
commit d37fedaa5a
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
maubot: 0.1.0 maubot: 0.1.0
id: com.ubuntu.ubottu id: com.ubuntu.ubottu
version: 1.0.0 version: 1.0.2
license: MIT license: MIT
modules: modules:
- ubottu - ubottu

View file

@ -310,7 +310,7 @@ class Ubottu(Plugin):
await evt.respond(apt.info(args[0], 'noble', False)) await evt.respond(apt.info(args[0], 'noble', False))
return True return True
if len(args) == 2: if len(args) == 2:
if args[1] in ['jammy', 'noble', 'mantic', 'focal']: if args[1] in ['jammy', 'noble', 'oracular', 'focal', 'plucky']:
if command_name == 'depends': if command_name == 'depends':
await evt.respond(apt.info(args[0], args[1], False)) await evt.respond(apt.info(args[0], args[1], False))
else: else: