mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Remaining Python 3 compatibility changes
Summary: Biggest change is turning everything to unicode Test Plan: The tests Reviewers: dsagal, paulfitz Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2875
This commit is contained in:
@@ -116,7 +116,7 @@ def action_from_repr(doc_action):
|
||||
try:
|
||||
return decode_objects(action_type(*doc_action[1:]))
|
||||
except TypeError as e:
|
||||
raise TypeError("%s: %s" % (doc_action[0], e.message))
|
||||
raise TypeError("%s: %s" % (doc_action[0], str(e)))
|
||||
|
||||
|
||||
def convert_recursive_helper(converter, data):
|
||||
|
||||
Reference in New Issue
Block a user