Browse Source

Merge pull request #2888 from xombiemp/ptp-golden

PTP Golden release fix
pull/2897/head
Ruud Burger 11 years ago
parent
commit
2debd5598f
  1. 4
      couchpotato/core/providers/torrent/passthepopcorn/main.py

4
couchpotato/core/providers/torrent/passthepopcorn/main.py

@ -89,11 +89,11 @@ class PassThePopcorn(TorrentProvider):
if 'GoldenPopcorn' in torrent and torrent['GoldenPopcorn']: if 'GoldenPopcorn' in torrent and torrent['GoldenPopcorn']:
torrentdesc += ' HQ' torrentdesc += ' HQ'
if self.conf('prefer_golden'): if self.conf('prefer_golden'):
torrentscore += 200 torrentscore += 5000
if 'Scene' in torrent and torrent['Scene']: if 'Scene' in torrent and torrent['Scene']:
torrentdesc += ' Scene' torrentdesc += ' Scene'
if self.conf('prefer_scene'): if self.conf('prefer_scene'):
torrentscore += 50 torrentscore += 2000
if 'RemasterTitle' in torrent and torrent['RemasterTitle']: if 'RemasterTitle' in torrent and torrent['RemasterTitle']:
torrentdesc += self.htmlToASCII(' %s' % torrent['RemasterTitle']) torrentdesc += self.htmlToASCII(' %s' % torrent['RemasterTitle'])

Loading…
Cancel
Save