From 6e00a9c355277ea8adca718f04a955f8e09185d7 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Fri, 8 Mar 2013 18:42:21 -0500 Subject: [PATCH] Revert "Use relative import for _imaginggl" This reverts commit 5e203de32710b9bac0f0d6870e4e77f78f99c782. --- PIL/ImageGL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PIL/ImageGL.py b/PIL/ImageGL.py index 0c1aa0932..5c58b6ca9 100644 --- a/PIL/ImageGL.py +++ b/PIL/ImageGL.py @@ -17,7 +17,7 @@ # extensions.) ## -from PIL import _imaginggl +import _imaginggl ## # Texture factory. @@ -25,4 +25,4 @@ from PIL import _imaginggl class TextureFactory: pass # overwritten by the _imaginggl module -from PIL._imaginggl import * +from _imaginggl import *