Skip to content

Commit

Permalink
use repr instead of str for errors
Browse files Browse the repository at this point in the history
Ref #279.
  • Loading branch information
lilydjwg committed Nov 5, 2024
1 parent 28f1ab5 commit 256bb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvchecker/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ async def process_result(
if isinstance(r1, Exception):
entry_waiter.set_exception(r.name, r1)
# no versions are returned from "apply_list_options"?
logger.error('no-result', name=r.name, error=str(r1))
logger.error('no-result', name=r.name, error=repr(r1))
has_failures = True
continue
check_version_update(oldvers, r.name, r1, verbose)
Expand Down

0 comments on commit 256bb9d

Please sign in to comment.