mirror of
https://github.com/slgobinath/SafeEyes.git
synced 2024-12-28 00:10:44 +01:00
Fix with python3.12 (#544)
imp is deprecated in 3.4 and removed in 3.12. this caused safe eyes to break on upgrading to fedora 39 Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
This commit is contained in:
parent
cbfc0cc133
commit
777d48603d
@ -21,7 +21,6 @@ This module contains utility functions for Safe Eyes and its plugins.
|
||||
"""
|
||||
|
||||
import errno
|
||||
import imp
|
||||
import inspect
|
||||
import importlib
|
||||
import json
|
||||
@ -355,7 +354,7 @@ def module_exist(module):
|
||||
Check wther the given Python module exists or not.
|
||||
"""
|
||||
try:
|
||||
imp.find_module(module)
|
||||
importlib.util.find_spec(module)
|
||||
return True
|
||||
except ImportError:
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user