aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 9ba7024..41c1f59 100755
--- a/run.py
+++ b/run.py
@@ -23,7 +23,7 @@ for plotter in conf['plotter']:
modname = plotter['module']
del plotter['module']
- mod = __import__(modname)
+ mod = __import__(modname, fromlist=[None])
mod.run(**plotter)
plt.close('all')