summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/crypter/Go4UpCom.py (renamed from module/plugins/crypter/Go4Up.py)11
1 files changed, 7 insertions, 4 deletions
diff --git a/module/plugins/crypter/Go4Up.py b/module/plugins/crypter/Go4UpCom.py
index 8c2f7ef89..102bc32b5 100644
--- a/module/plugins/crypter/Go4Up.py
+++ b/module/plugins/crypter/Go4UpCom.py
@@ -4,13 +4,13 @@ import re
from urlparse import urljoin
-from module.plugins.internal.SimpleCrypter import SimpleCrypter
+from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo
-class Go4Up(SimpleCrypter):
- __name__ = "Go4Up"
+class Go4UpCom(SimpleCrypter):
+ __name__ = "Go4UpCom"
__type__ = "crypter"
- __version__ = "0.10"
+ __version__ = "0.11"
__pattern__ = r'http://go4up\.com/(dl/\w{12}|rd/\w{12}/\d+)'
@@ -44,3 +44,6 @@ class Go4Up(SimpleCrypter):
continue
return links
+
+
+getInfo = create_getInfo(Go4UpCom)