diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-05-29 19:58:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-29 19:58:27 -0400 |
| commit | d3d5e45fa59893825927a50e0bfcaba22d7bb196 (patch) | |
| tree | ed970267c2a09ba56256c0b4c3aafa5bacabb049 /lib/svg/svg.py | |
| parent | bf86eace9ada3beb6ba58f6f3d982da0e391bd7c (diff) | |
| parent | b32a37178aaa1a31beb608d69504e6b4a822a1b5 (diff) | |
Merge pull request #171 from lexelby/lexelby-fix-grandma
fix grandma
Diffstat (limited to 'lib/svg/svg.py')
| -rw-r--r-- | lib/svg/svg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/svg/svg.py b/lib/svg/svg.py index 3bc546e7..852215f2 100644 --- a/lib/svg/svg.py +++ b/lib/svg/svg.py @@ -15,7 +15,7 @@ def color_block_to_point_lists(color_block): point_lists.append([]) continue - if not stitch.jump and not stitch.stop: + if not stitch.jump and not stitch.color_change: point_lists[-1].append(stitch.as_tuple()) return point_lists |
