Fix search error with query 'random sha256'

This commit is contained in:
Vlad 2020-08-04 15:47:41 +03:00
parent 1986b5ecac
commit c3af520c33

View file

@ -37,7 +37,7 @@ def random_int():
def random_sha256():
m = hashlib.sha256()
m.update(b''.join(random_characters()))
m.update(''.join(random_characters()).encode())
return unicode(m.hexdigest())