You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
config = yaml.load(config_file)
File "/usr/lib64/python3.5/site-packages/yaml/__init__.py", line 109, in load
raise RuntimeError("Unsafe load() call disabled by Gentoo. See bug #659348")
RuntimeError: Unsafe load() call disabled by Gentoo. See bug #659348
this fix works for me:
config = yaml.safe_load(config_file)
The text was updated successfully, but these errors were encountered:
got this error on startup with yaml file
this fix works for me:
config = yaml.safe_load(config_file)
The text was updated successfully, but these errors were encountered: