diff options
Diffstat (limited to 'Master/texmf-dist/asymptote/GUI/xasy2asy.py')
-rwxr-xr-x | Master/texmf-dist/asymptote/GUI/xasy2asy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/asymptote/GUI/xasy2asy.py b/Master/texmf-dist/asymptote/GUI/xasy2asy.py index 7779e073f81..984bd1f5dd9 100755 --- a/Master/texmf-dist/asymptote/GUI/xasy2asy.py +++ b/Master/texmf-dist/asymptote/GUI/xasy2asy.py @@ -18,8 +18,8 @@ from tempfile import mkdtemp # PIL support is now mandatory due to rotations try: - import ImageTk - import Image + from PIL import ImageTk + from PIL import Image except: pass |