From 845af2d9c4abb7669594444d293b3c7072b1e161 Mon Sep 17 00:00:00 2001 From: Yoann QUERET Date: Fri, 2 Oct 2015 16:34:35 +0200 Subject: Make config.json output fully JSON compatible --- gui/odr-dabmux-gui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gui/odr-dabmux-gui.py') diff --git a/gui/odr-dabmux-gui.py b/gui/odr-dabmux-gui.py index d0f2a27..5a3de76 100755 --- a/gui/odr-dabmux-gui.py +++ b/gui/odr-dabmux-gui.py @@ -63,7 +63,7 @@ def config_json_post(): return template('configeditor', version = conf.get_mux_version(), - config = conf.get_full_configuration(), + config = json.dumps(conf.get_full_configuration(), indent=4), message = successmessage) @route('/config.json', method="GET") @@ -73,8 +73,8 @@ def config_json_get(): conf.load() - return {'version': conf.get_mux_version(), - 'config': conf.get_full_configuration()} + return { 'version': conf.get_mux_version(), + 'config': conf.get_full_configuration() } @route('/') -- cgit v1.2.3