Closed JsBlueCat closed 2 months ago
i change
348: what = catch_what_regex.search(' '.join(fields[4:]))[0].strip()
with
348: what = catch_what_regex.search(' '.join(fields[4:])).group(0).strip()
and it pass
Well spotted, thanks!