mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 06:35:10 +00:00
12 lines
249 B
Python
12 lines
249 B
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
|
|
|
|
sys.modules[__name__] = olefile
|