From 5e8852c6ba99b9fd098c2c143b1256797e247b9f Mon Sep 17 00:00:00 2001 From: Papoteur Date: Tue, 26 May 2020 09:10:05 +0200 Subject: Suppress a warning --- lib/isodumper.py | 4 ++-- 1 file 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 # ########### -- cgit v1.2.1