diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 14:06:34 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 14:06:34 +0100 |
| commit | c7cbd38fcc60601dd3b41df8a3a234c079f5dc0b (patch) | |
| tree | f0d538952d5d683d8d22718a855fdca40f4ebab4 /searx/webapp.py | |
| parent | 213667b1ef93b7932aeba58aed58a0fef83749a3 (diff) | |
| parent | 8f4814ade265378f421e622e944ff19e9e567f9c (diff) | |
Merge pull request #164 from pointhi/favicons
improve Favicons
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 8d1676808..be7feee82 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -68,7 +68,7 @@ babel = Babel(app) global_favicons = [] for indice, theme in enumerate(themes): global_favicons.append([]) - theme_img_path = searx_dir+"/static/"+theme+"/img/" + theme_img_path = searx_dir+"/static/"+theme+"/img/icons/" for (dirpath, dirnames, filenames) in os.walk(theme_img_path): global_favicons[indice].extend(filenames) |