Index: compile_rules_graph.py ================================================================== --- compile_rules_graph.py +++ compile_rules_graph.py @@ -453,9 +453,9 @@ # Result return { "graph_callables": sPyCallables, "graph_callablesJS": sJSCallables, "rules_graphs": dAllGraph, - "rules_graphsJS": json.dumps(dAllGraph, ensure_ascii=False), + "rules_graphsJS": str(dAllGraph).replace("True", "true").replace("False", "false"), "rules_actions": dACTIONS, - "rules_actionsJS": json.dumps(dACTIONS, ensure_ascii=False) + "rules_actionsJS": str(dACTIONS).replace("True", "true").replace("False", "false") }