Skip to content
Snippets Groups Projects
Commit 2c79d0aa authored by Tristan Van Berkom's avatar Tristan Van Berkom
Browse files

_yaml.py: Strengthen node_get() to handle TypeError in type conversions.

parent c7a75c03
No related branches found
No related tags found
Loading
......@@ -363,7 +363,7 @@ def node_get(node, expected_type, key, indices=[], default_value=None):
value = expected_type(value)
else:
raise ValueError()
except ValueError:
except (ValueError, TypeError):
provenance = node_get_provenance(node, key=key, indices=indices)
raise LoadError(LoadErrorReason.INVALID_DATA,
"%s: Value of '%s' is not of the expected type '%s'" %
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment