Remove to_str from pickle.loads call
This commit is contained in:
parent
207391baca
commit
72644c6f57
1 changed files with 1 additions and 1 deletions
|
|
@ -679,7 +679,7 @@ def do_pickle(data):
|
|||
|
||||
def do_unpickle(data):
|
||||
"""Retrieve pickle from pickled string"""
|
||||
return loads(to_str(data))
|
||||
return loads(data)
|
||||
|
||||
|
||||
def dbserialize(data):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue