mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 04:27:16 +02:00
Remove to_str from pickle.loads call
This commit is contained in:
parent
7ca7fcb3ee
commit
cc840555ce
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