mirror of https://github.com/searxng/searxng.git
[fix] hash plugin
This commit is contained in:
parent
c9593c8ffd
commit
1ea9438f5d
|
@ -42,7 +42,6 @@ def post_search(request, search):
|
||||||
|
|
||||||
# select hash function
|
# select hash function
|
||||||
f = hashlib.new(function.lower())
|
f = hashlib.new(function.lower())
|
||||||
#f = hash_function[function.lower()]
|
|
||||||
|
|
||||||
# make digest from the given string
|
# make digest from the given string
|
||||||
f.update(string.strip())
|
f.update(string.strip())
|
||||||
|
@ -51,4 +50,4 @@ def post_search(request, search):
|
||||||
# print result
|
# print result
|
||||||
search.result_container.answers.clear()
|
search.result_container.answers.clear()
|
||||||
search.result_container.answers.add(function + " " + gettext('hash function') + ": " + digest)
|
search.result_container.answers.add(function + " " + gettext('hash function') + ": " + digest)
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue