Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make check_match() errors more readable for ListOf objects #199

Merged
merged 1 commit into from
Jan 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion securesystemslib/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@ def __init__(self, schema, min_count=0, max_count=sys.maxsize, list_name='list')
def check_match(self, object):
if not isinstance(object, (list, tuple)):
raise securesystemslib.exceptions.FormatError(
'Expected ' + repr(self._list_name) + ' but got ' + repr(object))
'Expected object of type {} but got type {}'.format(
self._list_name, type(object).__name__))


# Check if all the items in the 'object' list
Expand Down