Fix mistake in __mb_subcommands_list__

This commit is contained in:
Tulir Asokan 2019-01-15 15:47:30 +02:00
parent 80a35f3081
commit 9d38c43576

View File

@ -158,7 +158,7 @@ class CommandHandler:
@property
def __mb_subcommands_list__(self) -> str:
return f"**Subcommands:** {', '.join(self.__mb_subcommands__.keys())}"
return f"**Subcommands:** {', '.join(sc.__mb_name__ for sc in self.__mb_subcommands__)}"
@property
def __mb_usage_without_subcommands__(self) -> str: