diff options
author | Adam Tauber <asciimoo@gmail.com> | 2020-07-25 21:05:23 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2020-07-28 13:10:40 +0200 |
commit | 3f60bb470a0cd1f4c158ac4d621a51017ecadb54 (patch) | |
tree | 1ba1f16fe5153873067c8f0c36aa16bbcf0235b5 /searx/plugins | |
parent | dff879d07d3cd937526804dda4f07d2e84249c59 (diff) | |
download | searxng-3f60bb470a0cd1f4c158ac4d621a51017ecadb54.tar.gz searxng-3f60bb470a0cd1f4c158ac4d621a51017ecadb54.zip |
[fix] correct imported modules
Diffstat (limited to 'searx/plugins')
-rw-r--r-- | searx/plugins/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/plugins/__init__.py b/searx/plugins/__init__.py index 3d652e9ca..1abf02026 100644 --- a/searx/plugins/__init__.py +++ b/searx/plugins/__init__.py @@ -17,10 +17,10 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >. from hashlib import sha256 from importlib import import_module -from os import makedirs, remove -from os.path import abspath, basename, dirname, exists, isdir, join +from os import listdir, makedirs, remove +from os.path import abspath, basename, dirname, exists, join from shutil import copyfile -from sys import exit, version_info +from sys import version_info from traceback import print_exc from searx import logger, settings, static_path |