diff options
| author | Pepper <pepper@scannerjammer.com> | 2015-09-26 04:14:44 -0400 |
|---|---|---|
| committer | Pepper <pepper@scannerjammer.com> | 2015-09-26 04:14:44 -0400 |
| commit | 4ebeb643da6419835e9ac3adb731e38a8ec9c7b4 (patch) | |
| tree | 4876b43410d67b62a238102ee98bf78f248fee78 /lib/param/json.py | |
| parent | cc7fcec7ea718777f41154a107bdf8c709ed968a (diff) | |
reworked some more
Diffstat (limited to 'lib/param/json.py')
| -rw-r--r-- | lib/param/json.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/param/json.py b/lib/param/json.py index 8d1a66e..af9b775 100644 --- a/lib/param/json.py +++ b/lib/param/json.py @@ -4,5 +4,4 @@ import simplejson as json class Json(Param): def __init__(self, value, classname=""): super(Json, self).__init__(classname=classname) - self.value = json.parse(value) - + self.value = json.loads(value) |
