diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2020-07-14 18:56:57 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2020-07-28 13:10:40 +0200 |
| commit | 1f2dc6c64785ab962efbeed0cfc093fdd3f41bf0 (patch) | |
| tree | 29ab9f053d577989a3a7c52c34126f8a6cc1dde8 /searx/__init__.py | |
| parent | 1185c06a8732101ad16bb3a8926ff0797ff2c6b9 (diff) | |
[enh] add external plugin support
Diffstat (limited to 'searx/__init__.py')
| -rw-r--r-- | searx/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/__init__.py b/searx/__init__.py index 2f3ebfcfe..e3036b766 100644 --- a/searx/__init__.py +++ b/searx/__init__.py @@ -30,6 +30,7 @@ except: searx_dir = abspath(dirname(__file__)) engine_dir = dirname(realpath(__file__)) +static_path = abspath(join(dirname(__file__), 'static')) def check_settings_yml(file_name): |