Skip to content

Commit

Permalink
Fix ArcheTorrent (#3702)
Browse files Browse the repository at this point in the history
  • Loading branch information
adaur authored and medariox committed Feb 4, 2018
1 parent a42f4d1 commit fe715ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medusa/providers/torrent/html/archetorrent.py
Expand Up @@ -155,7 +155,7 @@ def parse(self, data, mode):
torrent_size = cells[labels.index('Taille')].get_text()
size = convert_size(torrent_size, default=-1)

date_raw = torrent('a')[1]['onmouseover']
date_raw = torrent('a')[2]['onmouseover']
pubdate_raw = re.search(r'Poster le: <\/b>(\d{2}-\d{2}-\d{4})', date_raw)
pubdate = self.parse_pubdate(pubdate_raw.group(1), dayfirst=True)

Expand Down

0 comments on commit fe715ea

Please sign in to comment.