Pillow/PIL/OleFileIO.py

15 lines
272 B
Python
Raw Normal View History

#!/usr/bin/env python
import warnings
warnings.warn(
'PIL.OleFileIO is deprecated. Use the olefile Python package '
'instead. This module will be removed in a future version.',
DeprecationWarning
)
import olefile
import sys
2015-05-10 16:55:33 +03:00
sys.modules[__name__] = olefile