Fixed command handling

This commit is contained in:
2021-10-26 13:00:16 +02:00
parent 9518d19580
commit e39661a42a
17 changed files with 33 additions and 29 deletions

View File

@@ -199,7 +199,7 @@ class Configuration(ConfigurationABC):
if alias == argument or f' {alias} ' == argument:
found = True
if argument_type.name not in argument and not found:
if argument_type.name != argument and not found:
return False
if (next_arguments is None or len(next_arguments) == 0) and \