web: simple formatting change

Nicely space out a few dictionaries so they are easier on the
eye when reading the code.
This commit is contained in:
Damien Churchill 2011-10-04 18:17:08 +01:00
parent 428681aca3
commit 6324737031
1 changed files with 4 additions and 4 deletions

View File

@ -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")
}
}