Revision: 489162ee33f1
Branch: default
Author: Juan J. Martínez <
j...@usebox.net>
Date: Sat Mar 29 14:05:01 2014 UTC
Log: Workaround for a 2to3 bug in windows, see:
http://bugs.python.org/issue20867
Thanks to Claudio Canepa for the patch!
Fixes issue #707.
http://code.google.com/p/pyglet/source/detail?r=489162ee33f1
Modified:
/pyglet/image/codecs/pil.py
=======================================
--- /pyglet/image/codecs/pil.py Thu Mar 6 20:59:07 2014 UTC
+++ /pyglet/image/codecs/pil.py Sat Mar 29 14:05:01 2014 UTC
@@ -35,6 +35,8 @@
'''
'''
+from __future__ import absolute_import
+
__docformat__ = 'restructuredtext'
__version__ = '$Id$'