Skip to content

Commit

Permalink
intelmq_gen_feeds_conf: error message for ruamel.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
sebix committed Mar 25, 2024
1 parent c1dc58d commit 5951201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/feeds-config-generator/intelmq_gen_feeds_conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ try:
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 5951201

Please sign in to comment.