diff --git a/sickbeard/providers/elitetorrent.py b/sickbeard/providers/elitetorrent.py index 28e1710031283823ef7de0ae4fae5ceda8cdd116..63a9492e2c50d32af0d90572d04160f15075148b 100644 --- a/sickbeard/providers/elitetorrent.py +++ b/sickbeard/providers/elitetorrent.py @@ -156,15 +156,17 @@ class elitetorrentProvider(generic.TorrentProvider): # Quality, if no literal is defined it's HDTV if 'calidad' not in title: - title += ' [720p HDTV x264]' + title += ' HDTV x264' - title = title.replace('(Buena calidad)', '[720p HDTV x264]') - title = title.replace('(Alta calidad)', '[720p HDTV x264]') - title = title.replace('(calidad regular)', '[DVDrip x264]') - title = title.replace('(calidad media)', '[DVDrip x264]') + title = title.replace('(calidad baja)', 'HDTV x264') + title = title.replace('(Buena calidad)', '720p HDTV x264') + title = title.replace('(Alta calidad)', '720p HDTV x264') + title = title.replace('(calidad regular)', 'DVDrip x264') + title = title.replace('(calidad media)', 'DVDrip x264') #Language, all results from this provider have spanish audio, we append it to title (avoid to download undesired torrents) - title += ' [Spanish Audio]' + title += ' SPANISH AUDIO' + title += '-ELITETORRENT' return title.strip() @@ -181,4 +183,4 @@ class elitetorrentCache(tvcache.TVCache): return {'entries': self.provider._doSearch(search_params)} -provider = elitetorrentProvider() \ No newline at end of file +provider = elitetorrentProvider()