Fix extraction of nEventsPerJob
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 #