Clean up warning and deprecation issues.
[open-adventure.git] / tests / coverage_dungeon.py
index 439edad30ac1c2f7234c4b1e9bd6c4b2f89ab4a0..46f0b11de4d6803a3752daba22e3d83f7731165c 100755 (executable)
@@ -197,7 +197,7 @@ if __name__ == "__main__":
     # load DB
     try:
         with open(YAML_PATH, "r") as f:
-            db = yaml.load(f)
+            db = yaml.safe_load(f)
     except IOError as e:
         print('ERROR: could not load {} ({}})'.format(YAML_PATH, e.strerror))
         exit(-1)