Skip to content
Snippets Groups Projects
Commit 6e65350c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[rc] Fix qa

parent 86a3ac37
No related branches found
No related tags found
No related merge requests found
Pipeline #85453 passed
...@@ -156,7 +156,7 @@ class UserDefaults(collections.abc.MutableMapping): ...@@ -156,7 +156,7 @@ class UserDefaults(collections.abc.MutableMapping):
if not isinstance(base, dict): if not isinstance(base, dict):
raise KeyError( raise KeyError(
f"You are trying to set configuration key " f"You are trying to set configuration key "
f"{k}, but {'.'.join(parts[:(n+1)])} is already a " f"{k}, but {'.'.join(parts[:(n + 1)])} is already a "
f"variable set in the file, and not a section" f"variable set in the file, and not a section"
) )
base[parts[-1]] = v base[parts[-1]] = v
......
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