Skip to content
Snippets Groups Projects
Commit 10da089b authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

expconfig: fix handling of interpolation errors

This is a follow-up of the Python 3 port.
The `message` field is no longer supported in standard exceptions.
parent 457b4e2b
No related branches found
No related tags found
No related merge requests found
......@@ -400,7 +400,7 @@ class ExpConfig(ConfigObj):
elif not isinstance(value, dict):
value = value.replace('$', '$$')
except (InterpolationError, ValueError) as error:
raise ExpConfigError(error.message, key)
raise ExpConfigError(str(error), key)
section[key] = value
# Undo remaining changes from walk with eval_key
......@@ -412,7 +412,7 @@ class ExpConfig(ConfigObj):
elif not isinstance(value, dict):
value = value.replace('$$', '$')
except (InterpolationError, ValueError) as error:
raise ExpConfigError(error.message, key)
raise ExpConfigError(str(error), key)
section[key] = value
# Move version info from local config to global list
......
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