mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Fix exception when running subcommand without enough arguments
This commit is contained in:
parent
6a74a360ca
commit
aac1f267d7
@ -164,7 +164,8 @@ class CommandHandler:
|
||||
@property
|
||||
def __mb_prefix__(self) -> str:
|
||||
if self.__mb_parent__:
|
||||
return f"{self.__mb_parent__.__mb_prefix__} {self.__mb_name__}"
|
||||
return (f"!{self.__mb_parent__.__mb_get_name__(self.__bound_instance__)} "
|
||||
f"{self.__mb_name__}")
|
||||
return f"!{self.__mb_name__}"
|
||||
|
||||
@property
|
||||
|
Loading…
Reference in New Issue
Block a user