From f0221e143a3347d759ee72d8024dd7dd45aaa024 Mon Sep 17 00:00:00 2001 From: djib Date: Sat, 7 Dec 2024 21:33:22 +0100 Subject: [PATCH] Remove Paused by default --- PDMameUpdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDMameUpdate.py b/PDMameUpdate.py index 74d205f..6b82975 100755 --- a/PDMameUpdate.py +++ b/PDMameUpdate.py @@ -270,7 +270,7 @@ def update_torrents(): "filename" : torrent['remote-link'], "magnet_link": True, "download_dir" : torrent['local-path'], - "paused" : True, + "paused" : False, } responce = client.torrent.add(arguments) logging.debug('clutch responce : %s', responce)