From c25be987a3a8d536b8323455828b83f66870d81d Mon Sep 17 00:00:00 2001 From: godofdream Date: Mon, 6 Aug 2012 17:48:55 +0200 Subject: update Freakshare, IcyFiles, Zippyshare, C1neon, FshareVn-Ac, Filefactory-Ac Added BypassCaptcha - closed #647, #615, #639, #644, #562, #586, #642 --- module/plugins/hoster/IcyFilesCom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hoster/IcyFilesCom.py') diff --git a/module/plugins/hoster/IcyFilesCom.py b/module/plugins/hoster/IcyFilesCom.py index 73dd5f7c9..09458732e 100644 --- a/module/plugins/hoster/IcyFilesCom.py +++ b/module/plugins/hoster/IcyFilesCom.py @@ -33,7 +33,7 @@ def getInfo(urls): size = re.search(IcyFilesCom.SIZE_PATTERN, html) if name is not None: name = name.group(1) - size = (size.group(1) * 1000000) + size = (int(size.group(1)) * 1000000) result.append((name, size, 2, url)) yield result @@ -42,7 +42,7 @@ class IcyFilesCom(Hoster): __name__ = "IcyFilesCom" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?icyfiles\.com/.*" - __version__ = "0.02" + __version__ = "0.03" __description__ = """IcyFiles.com plugin - free only""" __author_name__ = ("godofdream") __author_mail__ = ("soilfiction@gmail.com") -- cgit v1.2.3