From f1a03e5fb6c2877cbaea50b8c7d86dde7ab972ce Mon Sep 17 00:00:00 2001 From: AdeHub Date: Wed, 15 Apr 2020 07:22:31 +1200 Subject: [PATCH] pep --- headphones/qbittorrent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headphones/qbittorrent.py b/headphones/qbittorrent.py index f889dd2c..f32c1155 100755 --- a/headphones/qbittorrent.py +++ b/headphones/qbittorrent.py @@ -186,9 +186,9 @@ def removeTorrent(hash, remove_data=False): if torrent['ratio'] >= torrent['ratio_limit'] and torrent['ratio_limit'] >= 0: if qbclient.version == 2: if remove_data: - logger.info('%s has finished seeding, removing torrent and data. ' - 'Ratio: %s, Ratio Limit: %s' % ( - torrent['name'], torrent['ratio'], torrent['ratio_limit'])) + logger.info( + '%s has finished seeding, removing torrent and data. ' + 'Ratio: %s, Ratio Limit: %s' % (torrent['name'], torrent['ratio'], torrent['ratio_limit'])) qbclient.qb.delete_permanently(hash) else: logger.info('%s has finished seeding, removing torrent' % torrent['name'])