forked from M-Labs/artiq
tools/file_import: make sure sys.path is always restored
This commit is contained in:
parent
0d18942869
commit
cf465dae0c
|
@ -85,11 +85,11 @@ def file_import(filename, prefix="file_import_"):
|
|||
|
||||
path = os.path.dirname(os.path.realpath(filename))
|
||||
sys.path.insert(0, path)
|
||||
|
||||
loader = importlib.machinery.SourceFileLoader(modname, filename)
|
||||
module = loader.load_module()
|
||||
|
||||
sys.path.remove(path)
|
||||
try:
|
||||
loader = importlib.machinery.SourceFileLoader(modname, filename)
|
||||
module = loader.load_module()
|
||||
finally:
|
||||
sys.path.remove(path)
|
||||
|
||||
return module
|
||||
|
||||
|
|
Loading…
Reference in New Issue