2021.4.post1 #31

Merged
edraft merged 92 commits from 2021.4.post1 into master 2021-05-19 09:00:40 +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 = []