Skip to content

Commit

Permalink
Merge pull request #2485 from barbich/fix-2484
Browse files Browse the repository at this point in the history
Fixes #2484
  • Loading branch information
sebix committed May 5, 2024
2 parents 861a202 + 5951201 commit 63a0209
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contrib/feeds-config-generator/intelmq_gen_feeds_conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ import json
import sys

try:
import yaml
from ruamel.yaml import YAML
yaml = YAML(typ="safe", pure=True)
except ImportError:
print("[-] Please install yaml using the following command: 'pip install pyyaml'.", file=sys.stderr)
print("[-] Please install ruamel.yaml using the following command: 'pip install ruamel.yaml'.", file=sys.stderr)
sys.exit(-1)


Expand Down

0 comments on commit 63a0209

Please sign in to comment.