summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/GooIm.py
diff options
context:
space:
mode:
authorGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
committerGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
commitd2b60b5ceb369814a0de41c8b8744b5c4ed81523 (patch)
tree6619e01fc0e5f281e4d28678ec565860a86784ec /module/plugins/hoster/GooIm.py
parentupdated nitroflare.com's plugin (diff)
parentCode improvements (diff)
downloadpyload-d2b60b5ceb369814a0de41c8b8744b5c4ed81523.tar.xz
Merged with the updated nitroflare
Diffstat (limited to 'module/plugins/hoster/GooIm.py')
-rw-r--r--module/plugins/hoster/GooIm.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/module/plugins/hoster/GooIm.py b/module/plugins/hoster/GooIm.py
index 436d825a9..2cb012e50 100644
--- a/module/plugins/hoster/GooIm.py
+++ b/module/plugins/hoster/GooIm.py
@@ -11,7 +11,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class GooIm(SimpleHoster):
__name__ = "GooIm"
__type__ = "hoster"
- __version__ = "0.03"
+ __version__ = "0.04"
__pattern__ = r'https?://(?:www\.)?goo\.im/.+'
@@ -29,11 +29,9 @@ class GooIm(SimpleHoster):
self.multiDL = True
- def handleFree(self):
- url = self.pyfile.url
- self.html = self.load(url, cookies=True)
+ def handleFree(self, pyfile):
self.wait(10)
- self.download(url, cookies=True)
+ self.download(pyfile.url, cookies=True)
getInfo = create_getInfo(GooIm)