Private GIT

Skip to content
Snippets Groups Projects
Commit 895d065c authored by supergonkas's avatar supergonkas
Browse files

Merge pull request #445 from SickRage/duramato-patch-1

Small fix ,HoundDawgs
parents 6c782284 877d1378
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,7 @@ class HoundDawgsProvider(TorrentProvider): # pylint: disable=too-many-instance-
modifier = matches.group(2)
mod = {'K': 1, 'M': 2, 'G': 3, 'T': 4}
return float(size) * 1024**mod[modifier]
return int(float(size) * 1024**mod[modifier])
def seed_ratio(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment