diff options
author | 2015-10-23 22:53:17 +0200 | |
---|---|---|
committer | 2015-10-23 22:53:17 +0200 | |
commit | b47c05a08d0e04a9f81f6ff0fe0c6bea149e72a6 (patch) | |
tree | 3204999c1ed6efc58551b605238d082734a214d9 /module/plugins/crypter/XFileSharingFolder.py | |
parent | Fix https://github.com/pyload/pyload/issues/2099 (diff) | |
download | pyload-b47c05a08d0e04a9f81f6ff0fe0c6bea149e72a6.tar.xz |
Fix https://github.com/pyload/pyload/issues/2034#issuecomment-150610936
Diffstat (limited to 'module/plugins/crypter/XFileSharingFolder.py')
-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 4f08e63df..7c8003705 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.20" + __version__ = "0.21" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -48,7 +48,7 @@ class XFileSharingFolder(XFSCrypter): #@TODO: Recheck in 0.4.10 def load_account(self): class_name = self.classname - self.__class__.__name__ = self.PLUGIN_NAME + self.__class__.__name__ = str(self.PLUGIN_NAME) super(XFileSharingFolder, self).load_account() self.__class__.__name__ = class_name |