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 5713783 commit a6ba4edCopy full SHA for a6ba4ed
CHANGELOG.md
@@ -21,6 +21,8 @@
21
#### Collectors
22
23
#### Parsers
24
+- `intelmq.bots.parsers.shadowserver._config`:
25
+ - fix error message formatting if schema file is absent (PR#2528 by Sebastian Wagner).
26
27
#### Experts
28
intelmq/bots/parsers/shadowserver/_config.py
@@ -341,7 +341,7 @@ def reload():
341
return
342
else:
343
if not __config.test_mode:
344
- raise ValueError("The schema file does not exist: %r.", __config.schema_file)
+ raise ValueError(f"The schema file does not exist: {__config.schema_file}.")
345
346
__config.feedname_mapping.clear()
347
__config.filename_mapping.clear()
0 commit comments