File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
intelmq/bots/parsers/shadowserver Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 21
21
#### Collectors
22
22
23
23
#### Parsers
24
+ - ` intelmq.bots.parsers.shadowserver._config ` :
25
+ - fix error message formatting if schema file is absent (PR #2528 by Sebastian Wagner).
24
26
25
27
#### Experts
26
28
Original file line number Diff line number Diff line change @@ -2202,7 +2202,7 @@ For example using `curl -s https://interchange.shadowserver.org/intelmq/v1/schem
2202
2202
2203
2203
(optional, boolean) If an existing `feed.name` should be overwritten.
2204
2204
2205
- ** `auto_update`**
2205
+ **`auto_update`**
2206
2206
2207
2207
(optional, boolean) Enable automatic schema download.
2208
2208
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ def reload():
341
341
return
342
342
else :
343
343
if not __config .test_mode :
344
- raise ValueError ("The schema file does not exist: %r." , __config .schema_file )
344
+ raise ValueError (f "The schema file does not exist: { __config .schema_file } ." )
345
345
346
346
__config .feedname_mapping .clear ()
347
347
__config .filename_mapping .clear ()
You can’t perform that action at this time.
0 commit comments