2021.4.6 #25

Merged
edraft merged 57 commits from 2021.4.6 into 2021.4.post1 2021-04-11 15:54:38 +02:00
Showing only changes of commit 8cf7f494b3 - Show all commits

View File

@ -197,6 +197,7 @@ class Configuration(ConfigurationABC):
# ?new value
found = False
for alias in argument_type.aliases:
alias = f' {alias} '
if alias in argument:
found = True
@ -236,7 +237,7 @@ class Configuration(ConfigurationABC):
self._additional_arguments.append(argument_type.name)
result = True
if result:
if result and value == '':
self._handled_args.append(argument)
if next_arguments is not None and len(next_arguments) > 0:
next_args = []