diff options
| author | 2015-12-14 03:51:26 +0100 | |
|---|---|---|
| committer | 2015-12-27 20:54:33 +0100 | |
| commit | b0b837650b2f3f85e9533e9cbc56d6140d1929a6 (patch) | |
| tree | 3aff7a226f5f67e0550f9e2c09fa62add65906a0 /module/plugins/crypter/Go4UpCom.py | |
| parent | Update addons (diff) | |
| download | pyload-b0b837650b2f3f85e9533e9cbc56d6140d1929a6.tar.xz | |
Crypters version up
Diffstat (limited to 'module/plugins/crypter/Go4UpCom.py')
| -rwxr-xr-x | module/plugins/crypter/Go4UpCom.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/crypter/Go4UpCom.py b/module/plugins/crypter/Go4UpCom.py index 9a3315399..8e928789c 100755 --- a/module/plugins/crypter/Go4UpCom.py +++ b/module/plugins/crypter/Go4UpCom.py @@ -4,13 +4,13 @@ import re  import urlparse  from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo -from module.plugins.internal.utils import json +from module.plugins.internal.misc import json  class Go4UpCom(SimpleCrypter):      __name__    = "Go4UpCom"      __type__    = "crypter" -    __version__ = "0.16" +    __version__ = "0.17"      __status__  = "testing"      __pattern__ = r'http://go4up\.com/(dl/\w{12}|rd/\w{12}/\d+)' @@ -35,7 +35,7 @@ class Go4UpCom(SimpleCrypter):      def get_links(self):          links = [] -        preference = self.get_config("preferred_hoster") +        preference = self.config.get("preferred_hoster")          hosterslink_re = re.search(r'(/download/gethosts/.+?)"', self.data)          if hosterslink_re: | 
