summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/GooIm.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-14 16:47:49 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-27 21:22:11 +0100
commit8fe2fa85605c091369c8e69b36d1cded2cd9bbe0 (patch)
treea0d5745b1168fe887568fc6af1004c19ce44f4b6 /module/plugins/hoster/GooIm.py
parent[ExternalScripts] Update and fix (diff)
downloadpyload-8fe2fa85605c091369c8e69b36d1cded2cd9bbe0.tar.xz
Update hosters (1)
Diffstat (limited to 'module/plugins/hoster/GooIm.py')
-rw-r--r--module/plugins/hoster/GooIm.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/module/plugins/hoster/GooIm.py b/module/plugins/hoster/GooIm.py
index 6d10e6dae..24fb41106 100644
--- a/module/plugins/hoster/GooIm.py
+++ b/module/plugins/hoster/GooIm.py
@@ -5,13 +5,13 @@
import re
-from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
+from module.plugins.internal.SimpleHoster import SimpleHoster
class GooIm(SimpleHoster):
__name__ = "GooIm"
__type__ = "hoster"
- __version__ = "0.07"
+ __version__ = "0.08"
__status__ = "testing"
__pattern__ = r'https?://(?:www\.)?goo\.im/.+'
@@ -38,6 +38,3 @@ class GooIm(SimpleHoster):
def handle_free(self, pyfile):
self.wait(10)
self.link = pyfile.url
-
-
-getInfo = create_getInfo(GooIm)