We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec37d0c commit 38ef83cCopy full SHA for 38ef83c
CHANGELOG.md
@@ -28,6 +28,7 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
28
29
#### Experts
30
- `intelmq.bots.experts.asn_lookup.expert`: Print URLs to stdout only in verbose mode (PR#2591 by Sebastian Wagner).
31
+- `intelmq.bots.experts.sieve.expert`: Test for textX dependency in self-check (PR#2605 by Sebastian Wagner).
32
33
#### Outputs
34
intelmq/bots/experts/sieve/expert.py
@@ -83,6 +83,9 @@ def check(parameters):
83
84
metamodel = None
85
86
+ if metamodel_from_file is None:
87
+ raise MissingDependencyError("textx")
88
+
89
try:
90
metamodel = metamodel_from_file(grammarfile)
91
except TextXError as e:
0 commit comments