Commit 225f2358 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

py3: import reload() from importlib in py3.

parent 3dff26c7
......@@ -48,6 +48,9 @@ from Products.ERP5Type.tests.ERP5TypeTestCase import (
)
from glob import glob
import transaction
import six
if not six.PY2:
from importlib import reload
from zLOG import LOG, DEBUG, INFO
......
......@@ -60,6 +60,7 @@ if six.PY2:
FileIO = file
else:
from io import FileIO
from importlib import reload
class FileUpload(FileIO):
"""Act as an uploaded file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment