Ignore failed preview round scans
This commit is contained in:
parent
36fa6a6dca
commit
bb10d5fa06
@ -159,7 +159,10 @@ class PreviewWorker:
|
|||||||
|
|
||||||
for file in parsers:
|
for file in parsers:
|
||||||
parser = parsers[file]
|
parser = parsers[file]
|
||||||
self.__extractPersonsFromSinglePreview(parser)
|
try:
|
||||||
|
self.__extractPersonsFromSinglePreview(parser)
|
||||||
|
except:
|
||||||
|
self.l.error('Failed to parse preview round in file %s. Skipping this file\'s content.', parser.fileName)
|
||||||
|
|
||||||
return types.HtmlPreviewImport(self.participants, self.previewResults)
|
return types.HtmlPreviewImport(self.participants, self.previewResults)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user