bugfix
This commit is contained in:
parent
4867f3db80
commit
919b316cf3
@ -569,7 +569,9 @@ class Blocks(EventDispatcher):
|
|||||||
r = f(**kwargs)
|
r = f(**kwargs)
|
||||||
if isinstance(r, dict):
|
if isinstance(r, dict):
|
||||||
return r
|
return r
|
||||||
print('get_rtdata():method return is not dict', desc, 'ret=', r)
|
if isinstance(r, DictObject):
|
||||||
|
return r.to_dict()
|
||||||
|
print('get_rtdata():method return is not dict', desc, 'ret=', r, type(r))
|
||||||
return {}
|
return {}
|
||||||
except:
|
except:
|
||||||
print_exc()
|
print_exc()
|
||||||
|
Loading…
Reference in New Issue
Block a user