diff --git a/list_torrents.py b/list_torrents.py index 179ecd6..c607806 100755 --- a/list_torrents.py +++ b/list_torrents.py @@ -59,6 +59,7 @@ def print_ssv(): sorted_torrents = sorted( qbt_client.torrents_info(), key=lambda d: d.ratio, reverse=True ) + print("Name Size # of Trackers Ratio Uploaded") for torrent in sorted_torrents: name = torrent.name size = human_bytes(torrent.total_size)