mirror of
https://github.com/jbowdre/phpIPAM-for-vRA8.git
synced 2024-11-26 00:42:19 +00:00
13 lines
245 B
Python
13 lines
245 B
Python
import importlib
|
|
|
|
try:
|
|
import importlib.util
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
try:
|
|
module_from_spec = importlib.util.module_from_spec
|
|
except AttributeError:
|
|
def module_from_spec(spec):
|
|
return spec.loader.load_module(spec.name)
|