diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-04 01:18:58 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-04 01:18:58 +0100 |
commit | c1c91d8dc432f02fab94ada8581b634ca9034e21 (patch) | |
tree | 652cbbf1bfe3f7fb69bd35b91f7c44ec58850454 /module/plugins/crypter | |
parent | [UploadableCh] Cleanup (diff) | |
download | pyload-c1c91d8dc432f02fab94ada8581b634ca9034e21.tar.xz |
Go4Up -> Go4UpCom
Diffstat (limited to 'module/plugins/crypter')
-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) |