From 5c65d260bd54ad2aeff616a085ec00cd1526d7cb Mon Sep 17 00:00:00 2001 From: John Burwell Date: Sun, 30 Apr 2023 21:25:23 -0500 Subject: [PATCH] rename listu to listunread --- rsbbs/plugins/listunread/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsbbs/plugins/listunread/plugin.py b/rsbbs/plugins/listunread/plugin.py index a95d958..c64643a 100644 --- a/rsbbs/plugins/listunread/plugin.py +++ b/rsbbs/plugins/listunread/plugin.py @@ -32,7 +32,7 @@ class Plugin(): def init_parser(self, parser: Parser) -> None: subparser = parser.subparsers.add_parser( - name='listu', + name='listunread', aliases=['lu'], help='List unread messages addressed to you') subparser.set_defaults(func=self.run)