aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2020-05-26 09:10:05 +0200
committerPapoteur <papoteur@mageia.org>2020-05-26 09:13:04 +0200
commit5e8852c6ba99b9fd098c2c143b1256797e247b9f (patch)
tree0e30c76bed099d4d9d28196900c1918de9a9c9a9
parent180f9081a1047f199fca8f33880333e754a86cdd (diff)
downloadisodumper-5e8852c6ba99b9fd098c2c143b1256797e247b9f.tar
isodumper-5e8852c6ba99b9fd098c2c143b1256797e247b9f.tar.gz
isodumper-5e8852c6ba99b9fd098c2c143b1256797e247b9f.tar.bz2
isodumper-5e8852c6ba99b9fd098c2c143b1256797e247b9f.tar.xz
isodumper-5e8852c6ba99b9fd098c2c143b1256797e247b9f.zip
Suppress a warning
-rwxr-xr-xlib/isodumper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index 6862a54..06eedeb 100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -27,10 +27,10 @@
# ensure we're using the latest build, if called from our build environment
import sys
-import imp
+import importlib
sys.path.insert(0,'../../../build/swig/python3')
-imp.reload(sys)
+imporlib.reload(sys)
###########
# imports #
###########