Skip to content

Commit

Permalink
fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kleiner committed Aug 1, 2024
1 parent 8b66a15 commit f694932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whoisit/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def load_bootstrap_data(self, data, overrides=False, allow_insecure=False, from_
f'string, got: {type(data)}')
elif not isinstance(data, dict) and not from_json:
raise BootstrapError(f'Unable to load bootstrap data, data must be a '
f'string, got: {type(data)}')
f'dict, got: {type(data)}')
self._use_iana_overrides = bool(overrides)
self._allow_insecure = bool(allow_insecure)
try:
Expand Down

0 comments on commit f694932

Please sign in to comment.