Merge pull request #586 from HakShak/dev

Fixed infinite loop in lib/rtorrent
This commit is contained in:
Nils 2014-05-29 00:19:27 +02:00
commit 3bca5d937e
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class RTorrent:
while i < MAX_RETRIES:
for torrent in self.get_torrents():
if torrent.info_hash != info_hash:
break
continue
time.sleep(1)
i += 1