From 0df77448455109cdf979ab950fffbae5000897a0 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Wed, 13 Mar 2013 19:03:38 -0700 Subject: [PATCH] Fix imports --- PIL/WebPImagePlugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PIL/WebPImagePlugin.py b/PIL/WebPImagePlugin.py index 387c6434f..d1558d113 100644 --- a/PIL/WebPImagePlugin.py +++ b/PIL/WebPImagePlugin.py @@ -1,5 +1,5 @@ -import Image -import ImageFile +from PIL import Image +from PIL import ImageFile import StringIO import _webp