1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 14:31:46 +00:00
This commit is contained in:
deadc0de6
2023-12-21 13:28:00 +01:00
committed by deadc0de
parent 5f16e6a074
commit 2c462c3f36

View File

@@ -1709,11 +1709,13 @@ class CfgYaml:
if k not in final:
final[k] = []
final[k] += val
elif isinstance(val, str):
final[k] = val
else:
# don't know how to handle
# err = 'unable to merge'
# raise YamlException(err)
final[k] = val
err = 'unable to merge'
raise YamlException(err)
return final
@classmethod