diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-27 18:32:05 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-27 18:32:05 +0100 |
commit | 7b384955c4c3575d36d981b61b06442bd1aa7013 (patch) | |
tree | c9b9d53109d66e8312b77fc422a6f3a7c8b5aa1c | |
parent | Merge pull request #2120 from GammaC0de/patch-6 (diff) | |
download | pyload-7b384955c4c3575d36d981b61b06442bd1aa7013.tar.xz |
[XFileSharingFolder] Fix https://github.com/pyload/pyload/issues/2122
-rw-r--r-- | module/plugins/crypter/XFileSharingFolder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/XFileSharingFolder.py b/module/plugins/crypter/XFileSharingFolder.py index 7c8003705..0b31e3a90 100644 --- a/module/plugins/crypter/XFileSharingFolder.py +++ b/module/plugins/crypter/XFileSharingFolder.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSCrypter import XFSCrypter, create_getInfo class XFileSharingFolder(XFSCrypter): __name__ = "XFileSharingFolder" __type__ = "crypter" - __version__ = "0.21" + __version__ = "0.22" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -42,7 +42,7 @@ class XFileSharingFolder(XFSCrypter): self.req = self.pyload.requestFactory.getRequest(self.classname) self.premium = False - super(SimpleCrypter, self).setup_base() + super(XFileSharingFolder, self).setup_base() #@TODO: Recheck in 0.4.10 |