Skip to content

Use `str()` instead of `.message` for exception

Jerome Flesch requested to merge danielquinn:patch-1 into master

Created by: danielquinn

In a case where a KeyError is raised, the exception is caught, but then it tried to reference ex.message, which doesn't exist for KeyErrors in modern versions of Python. Using str(ex) should deliver the same result.

Merge request reports