diff --git a/setup.py b/setup.py index a4f9a09..9529fd3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup -VERSION = '1.2.2' +VERSION = '1.2.3' AUTHOR_NAME = 'Andy Port' AUTHOR_EMAIL = 'AndyAPort@gmail.com' diff --git a/svgpathtools/path.py b/svgpathtools/path.py index 25c4184..764182d 100644 --- a/svgpathtools/path.py +++ b/svgpathtools/path.py @@ -2099,7 +2099,7 @@ class Path(MutableSequence): # redundant intersection. This code block checks for and removes said # redundancies. if intersection_list: - pts = [seg1.point(_t1) for _T1, _seg1, _t1 in zip(*intersection_list)[0]] + pts = [seg1.point(_t1) for _T1, _seg1, _t1 in list(zip(*intersection_list))[0]] indices2remove = [] for ind1 in range(len(pts)): for ind2 in range(ind1 + 1, len(pts)):