botfront / rasa-addons

A set of 🚀🚀🚀 components to be used with Botfront and/or Rasa
https://botfront.io
Apache License 2.0
130 stars 37 forks source link

"YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated" in rules.py #39

Closed raymondpang365 closed 4 years ago

raymondpang365 commented 5 years ago

Rasa Addons version: 0.5.9 Rasa Core version: 0.13.8

Describe the problem:

rasa_addons/rules.py:157: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details

Possible solution:

I have to change from yaml.load(stream) to yaml.safe_load(stream) to make it work again