Skip to content

Commit

Permalink
🐛 Fix torrent link return miss....
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhilip committed Mar 14, 2019
1 parent 9b20426 commit e776a9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extractors/base/nexusphp.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ def torrent_link(self, tid):
with open(tmp_file, "wb") as torrent:
r = requests.get(torrent_link)
torrent.write(r.content)
return tmp_file
torrent_link = tmp_file
return torrent_link

# -*- Torrent's download, upload and thank -*-
def torrent_download(self, tid, **kwargs):
Expand Down

0 comments on commit e776a9c

Please sign in to comment.