Skip to content

Commit

Permalink
Merge pull request #93 from sursir/patch-1
Browse files Browse the repository at this point in the history
Fix Threads parse mistake  in DstReader
  • Loading branch information
lexelby committed Apr 20, 2022
2 parents e6157ca + a07fc9b commit 2ab0085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyembroidery/DstReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def process_header_info(out, prefix, value):
values = [x.strip() for x in value.split(',')]
out.add_thread({
"hex": values[0],
"description": value[1],
"catalog": value[2]
"description": values[1],
"catalog": values[2]
})
else:
out.metadata(prefix, value)
Expand Down

0 comments on commit 2ab0085

Please sign in to comment.