mirror of
https://github.com/maubot/maubot
synced 2025-08-29 07:40:38 +00:00
This commit is contained in:
parent
c3458eab58
commit
b19a2ea487
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class CommandHandler:
|
||||||
remaining_val, call_args[arg.name] = arg.match(
|
remaining_val, call_args[arg.name] = arg.match(
|
||||||
remaining_val.strip(), evt=evt, instance=self.__bound_instance__
|
remaining_val.strip(), evt=evt, instance=self.__bound_instance__
|
||||||
)
|
)
|
||||||
if arg.required and call_args[arg.name] is None:
|
if arg.required and (call_args[arg.name] is None or call_args[arg.name] == ""):
|
||||||
raise ValueError("Argument required")
|
raise ValueError("Argument required")
|
||||||
except ArgumentSyntaxError as e:
|
except ArgumentSyntaxError as e:
|
||||||
await evt.reply(e.message + (f"\n{self.__mb_usage__}" if e.show_usage else ""))
|
await evt.reply(e.message + (f"\n{self.__mb_usage__}" if e.show_usage else ""))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue