We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58dba0 commit c1dc58dCopy full SHA for c1dc58d
contrib/feeds-config-generator/intelmq_gen_feeds_conf
@@ -8,7 +8,8 @@ import json
8
import sys
9
10
try:
11
- import yaml
+ from ruamel.yaml import YAML
12
+ yaml = YAML(typ="safe", pure=True)
13
except ImportError:
14
print("[-] Please install yaml using the following command: 'pip install pyyaml'.", file=sys.stderr)
15
sys.exit(-1)
0 commit comments