1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-30 00:20:19 +02:00

[fix] hash plugin

This commit is contained in:
Venca24 2018-03-17 13:56:46 +01:00
parent c9593c8ffd
commit 1ea9438f5d

View File

@ -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())