diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-12-07 01:27:29 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-12-07 01:27:29 +0000 |
commit | 36c787a3950cc7044fccb78d84f82f0ad567e905 (patch) | |
tree | 94d78874dd82f3354b0b2af698c25ae78787d667 /services.py | |
parent | 8fae8f38c2c95ed99cd16fc450519915193ae895 (diff) | |
download | eda.gay-36c787a3950cc7044fccb78d84f82f0ad567e905.tar.gz eda.gay-36c787a3950cc7044fccb78d84f82f0ad567e905.zip |
Added images, added footer stuff
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"]) |