diff options
Diffstat (limited to 'services.py')
-rwxr-xr-x | services.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services.py b/services.py index 1e0f757..77361fa 100755 --- a/services.py +++ b/services.py @@ -95,8 +95,8 @@ def get_qbit_stats(): def get_trans_stats(): client = clutch.client.Client( address = "http://%s:%s/transmission/rpc" % (app.CONFIG["transmission"]["url"], app.CONFIG["transmission"]["port"]), - username = app.CONFIG["transmission"]["username"], - password = app.CONFIG["transmission"]["password"] + # username = app.CONFIG["transmission"]["username"], + # password = app.CONFIG["transmission"]["password"] ) stats = json.loads(client.session.stats().json()) active_for = datetime.timedelta(seconds = stats["arguments"]["cumulative_stats"]["seconds_active"]) |