Skip to content

Commit

Permalink
Fix Zooqle parser, seeds number points to wrong XML element
Browse files Browse the repository at this point in the history
  • Loading branch information
0x20Man committed Dec 3, 2018
1 parent 4656b42 commit b3e1b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/providers/torrent_modules/zooqle.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _parse(xml, imdbid):
result['downloadid'] = None
result['freeleech'] = 0
result['download_client'] = None
result['seeders'] = int(i[9].text)
result['seeders'] = int(i[10].text)

results.append(result)
except Exception as e:
Expand Down

0 comments on commit b3e1b11

Please sign in to comment.