diff options
Diffstat (limited to 'lib/extensions/input.py')
| -rw-r--r-- | lib/extensions/input.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/input.py b/lib/extensions/input.py index 9f1314eb..a8402fdc 100644 --- a/lib/extensions/input.py +++ b/lib/extensions/input.py @@ -31,7 +31,7 @@ class Input(object): # some file formats use 3 or more jump stitches in a row to indicate a trim if command == pyembroidery.JUMP: jump_counter += 1 - if command == pyembroidery.TRIM or jump_counter >=3: + if command == pyembroidery.TRIM or jump_counter >= 3: trim_after = True extents = stitch_plan.extents |
