BF: Due to python3 bug, importlib.machinery may need explicit import

pull/613/head
Steven Hiscocks 2014-02-08 20:47:12 +00:00
parent 59b9045e88
commit 530cd53add
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import time, logging
import os
import sys
if sys.version_info >= (3, 3):
import importlib
import importlib.machinery
else:
import imp
from collections import Mapping