aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2021-03-16 17:25:14 +0000
committerzsloan2021-03-16 17:25:14 +0000
commit696585dda43ec238940b2e1cc239028e31684dc3 (patch)
tree935c808b983242974c081b834579991c94435449 /wqflask
parent02b14ccc55978742cd115f3c80bf8ef41ac77ae7 (diff)
downloadgenenetwork2-696585dda43ec238940b2e1cc239028e31684dc3.tar.gz
Fixed encoding in load_json_from_redis to account for the first that column values are sometimes stored as bytes and sometimes as strings
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/utility/redis_tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/redis_tools.py b/wqflask/utility/redis_tools.py
index d05de923..8052035f 100644
--- a/wqflask/utility/redis_tools.py
+++ b/wqflask/utility/redis_tools.py
@@ -26,7 +26,7 @@ def is_redis_available():
def load_json_from_redis(item_list, column_value):
- return json.loads(item_list[str.encode(column_value)])
+ return json.loads(item_list[column_value])
def get_user_id(column_name, column_value):