summaryrefslogtreecommitdiffstats
path: root/anslib/patches/ansible-ghetto-json-ds-dont-parse-numbers.patch
blob: 62069d35a6614d2562ea1c4635b30488c38b749f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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