Changes between Initial Version and Version 1 of Ticket #27003, comment 5


Ignore:
Timestamp:
08/03/16 17:50:20 (7 years ago)
Author:
Brandon Chinn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27003, comment 5

    initial v1  
    1010        return value
    1111    val = json.loads(value)
    12     # parse val and convert all strings to JsonStr
     12    if isinstance(val, str):
     13        return JsonStr(val)
     14    else:
     15        return val
    1316}}}
Back to Top