Fixes Invalid ratio error when ratio is not set

I would recommend undoing 7673cd5cc9 for the time being
as some of the client scripts have code dependent on the input being a string.
This commit is contained in:
sammy2142 2014-05-12 11:31:44 +01:00
parent 1d01d2bc52
commit e42cdb5b4a

View file

@ -85,7 +85,7 @@ 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: