Compare commits
No commits in common. "c14a34f2326287e955c2d5b53de5c9b6ce6248ca" and "c54f7cb77569215e931c3bbcdd505b3273df02a6" have entirely different histories.
c14a34f232
...
c54f7cb775
3 changed files with 7 additions and 8 deletions
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "tiramisu"
|
name = "tiramisu"
|
||||||
version = "5.2.0a8"
|
version = "5.2.0a6"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "an options controller tool"
|
description = "an options controller tool"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "5.2.0a8"
|
__version__ = "5.2.0a6"
|
||||||
|
|
|
||||||
|
|
@ -643,12 +643,11 @@ def manager_callback(
|
||||||
if param.optional:
|
if param.optional:
|
||||||
raise CancelParam(callbk_option.impl_getpath(), child_path)
|
raise CancelParam(callbk_option.impl_getpath(), child_path)
|
||||||
|
|
||||||
identifiers = doption.get_identifiers(parent)
|
identifiers = display_list(doption.get_identifiers(parent), add_quote=True)
|
||||||
if not identifiers:
|
doption_name = doption.impl_get_display_name(
|
||||||
errors.raise_carry_out_calculation_error(subconfig, _('cannot calculate arguments for {0}, {1} with identifier "{2}", there is no identifiers'), err, extra_keys=[identifier])
|
None, with_quote=True
|
||||||
else:
|
)
|
||||||
identifiers_list = display_list(identifiers, add_quote=True)
|
errors.raise_carry_out_calculation_error(subconfig, _('cannot calculate arguments for "{0}", cannot find dynamic variable "{1}" with identifier "{2}", list of valid identifiers: {3}'), err, extra_keys=[doption_name, identifier, identifiers])
|
||||||
errors.raise_carry_out_calculation_error(subconfig, _('cannot calculate arguments for {0}, {1} with identifier "{2}", list of valid identifiers: {3}'), err, extra_keys=[identifier, identifiers_list])
|
|
||||||
new_parents.append(
|
new_parents.append(
|
||||||
parent.get_child(
|
parent.get_child(
|
||||||
doption,
|
doption,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue