From 632473703182f7c53393bb94256c88fef3ea59e4 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Tue, 4 Oct 2011 18:17:08 +0100 Subject: web: simple formatting change Nicely space out a few dictionaries so they are easier on the eye when reading the code. --- deluge/ui/web/json_api.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deluge/ui/web/json_api.py b/deluge/ui/web/json_api.py index 0640b75e7..ae4d4724f 100644 --- a/deluge/ui/web/json_api.py +++ b/deluge/ui/web/json_api.py @@ -505,11 +505,11 @@ class WebApi(JSONComponent): d = Deferred() ui_info = { "connected": client.connected(), - "torrents": None, - "filters": None, + "torrents": None, + "filters": None, "stats": { - "max_download": self.core_config.get("max_download_speed"), - "max_upload": self.core_config.get("max_upload_speed"), + "max_download": self.core_config.get("max_download_speed"), + "max_upload": self.core_config.get("max_upload_speed"), "max_num_connections": self.core_config.get("max_connections_global") } } -- cgit