1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 11:32:20 -05:00

Merge pull request #549 from sammy2142/patch-1

Fixes Invalid ratio error when ratio is not set for transmission
This commit is contained in:
echel0n 2014-05-13 05:25:52 -07:00
commit 0257c70990

View File

@ -85,12 +85,12 @@ class TransmissionAPI(GenericClient):
ratio = result.ratio ratio = result.ratio
elif sickbeard.TORRENT_RATIO: elif sickbeard.TORRENT_RATIO:
ratio = sickbeard.TORRENT_RATIO ratio = sickbeard.TORRENT_RATIO
if ratio:
try: try:
float(ratio) float(ratio)
except ValueError: except ValueError:
logger.log(self.name + u': Invalid Ratio. "' + ratio + u'" is not a number', logger.ERROR) logger.log(self.name + u': Invalid Ratio. "' + ratio + u'" is not a number', logger.ERROR)
return False return False
torrent_id = self._get_torrent_hash(result) torrent_id = self._get_torrent_hash(result)