diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-01-20 23:56:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-20 23:56:50 +0100 |
| commit | 3a57a1a0d096f9b15eab14c65c9c2bab432097d5 (patch) | |
| tree | c1e5ab56359ed3f23a17e6721cae1c4fbf6d88af /searx/utils.py | |
| parent | 57149661e4f90e5ad3a9a4c36bb5f31a1c7ec6aa (diff) | |
| parent | 15eef0ebdb15af80c026302bef250dc7f4417951 (diff) | |
Merge pull request #832 from dalf/input_check
Input check
Diffstat (limited to 'searx/utils.py')
| -rw-r--r-- | searx/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/utils.py b/searx/utils.py index faa634853..35cb6f8a6 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -175,6 +175,8 @@ def get_themes(root): templates_path = os.path.join(root, 'templates') themes = os.listdir(os.path.join(static_path, 'themes')) + if '__common__' in themes: + themes.remove('__common__') return static_path, templates_path, themes |