Skip to content

Commit

Permalink
fix(pm4py): fixed small bug in chunk_regex importer
Browse files Browse the repository at this point in the history
  • Loading branch information
fit-alessandro-berti committed Aug 11, 2022
1 parent 6997644 commit 9423897
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pm4py/objects/log/importer/xes/variants/chunk_regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def import_log_from_file_object(F, encoding, file_size=sys.maxsize, parameters=N
if idx > -1:
tag = el[:idx]
el = el.split('\"')
el[-1] = el[-1].strip()
if tag == "string":
curr_els_attrs[-1][el[1]] = el[3]
if el[-1] != '/':
Expand Down

0 comments on commit 9423897

Please sign in to comment.