Skip to content

Fix extraction of nEventsPerJob

Spyros Argyropoulos requested to merge fixlogparser into master

Description of bug

When no nEventsPerJob was present in the jO file logParser would crash because of the check if nEventsPerJob is None. jo_utils returns an empty string instead of None.

Changes introduced

if nEventsPerJob is None is replaced with if not nEventsPerJob

Tests

Tested on problematic logs provided by @avroy and logParser runs without problem

Issues resolved

Closes #

Merge request reports