summaryrefslogtreecommitdiff
path: root/searx/search/processors/offline.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-04-26 11:12:02 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2021-04-27 14:20:07 +0200
commitb1557b544368b416c158c13f12946859abbe00e0 (patch)
tree9cf9ce57d66b7701051a41c2757b5c92fa3abd09 /searx/search/processors/offline.py
parent9b482e8fccfc5e5504e4c8abdb60ce5c11678018 (diff)
[mod] processors: show identical error messages on /search and /stats
Diffstat (limited to 'searx/search/processors/offline.py')
-rw-r--r--searx/search/processors/offline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/search/processors/offline.py b/searx/search/processors/offline.py
index 5186b346a..ad03fed4b 100644
--- a/searx/search/processors/offline.py
+++ b/searx/search/processors/offline.py
@@ -22,5 +22,5 @@ class OfflineProcessor(EngineProcessor):
# do not record the error
logger.exception('engine {0} : invalid input : {1}'.format(self.engine_name, e))
except Exception as e:
- self.handle_exception(result_container, 'unexpected crash', e)
+ self.handle_exception(result_container, e)
logger.exception('engine {0} : exception : {1}'.format(self.engine_name, e))