Skip to content

Commit

Permalink
3.6 compat tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarize committed Oct 29, 2018
1 parent 2a48b00 commit 60afd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyembroidery/GcodeReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def parse(f):
or byte == b'+' \
or byte == b'-' \
or byte == b'.':
value += str(byte)
value += byte.decode('utf8')
continue

if ord_A <= b <= ord_Z:
Expand Down

0 comments on commit 60afd80

Please sign in to comment.