summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xghetto_json16
1 files changed, 8 insertions, 8 deletions
diff --git a/ghetto_json b/ghetto_json
index ebc3d51..ef936b9 100755
--- a/ghetto_json
+++ b/ghetto_json
@@ -35,14 +35,14 @@ def main(params_list):
del ref[last_part]
changed = True
else:
- if target.isdigit():
- target = int(target)
- if target == 'null':
- target = None
- if target == 'false':
- target = False
- if target == 'true':
- target = True
+# if target.isdigit():
+# target = int(target)
+# if target == 'null':
+# target = None
+# if target == 'false':
+# target = False
+# if target == 'true':
+# target = True
if last_part not in ref or ref[last_part] != target:
ref[last_part] = target
changed = True