Fix deserialization in PersistentState again

This commit is contained in:
simon987 2022-05-07 09:41:10 -04:00
parent 372abb0076
commit 826312115c
2 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ def _serialize(value):
def _deserialize(value, col_type): def _deserialize(value, col_type):
if col_type == "blob": if col_type.lower() == "blob":
return base64.b64decode(value) return base64.b64decode(value)
return value return value

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="hexlib", name="hexlib",
version="1.80", version="1.81",
description="Misc utility methods", description="Misc utility methods",
author="simon987", author="simon987",
author_email="me@simon987.net", author_email="me@simon987.net",