diff --git a/plugins/qbittorrent/workers/qbittorrent_worker.py b/plugins/qbittorrent/workers/qbittorrent_worker.py index 1f48daaed..f219dcf23 100755 --- a/plugins/qbittorrent/workers/qbittorrent_worker.py +++ b/plugins/qbittorrent/workers/qbittorrent_worker.py @@ -159,7 +159,9 @@ class downloadBT(Thread): def completed(self): while True: torrents = self.qb.torrents(filter='completed') - if len(torrents) > 0: + tlen = len(torrents) + print "torrents count:", tlen + if tlen > 0: for torrent in torrents: path = torrent['save_path'] + torrent['name'] self.video_do(path)