diff --git a/homeassistant/components/notify/html5.py b/homeassistant/components/notify/html5.py index 103ccc7885b20d3194c172df6f290db6d3d6beb4..6ee60512631df581b3aa5b681552761b3d13c3b6 100644 --- a/homeassistant/components/notify/html5.py +++ b/homeassistant/components/notify/html5.py @@ -144,7 +144,7 @@ def _save_config(filename, config): """Save configuration.""" try: with open(filename, 'w') as fdesc: - fdesc.write(json.dumps(config, indent=4, sort_keys=True)) + fdesc.write(json.dumps(config)) except (IOError, TypeError) as error: _LOGGER.error('Saving config file failed: %s', error) return False