diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 03:25:42 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 03:25:42 +0100 |
commit | ea2d07843d369d8b8fd2aa02930bf549ce94a661 (patch) | |
tree | d74957918b4741e3a31c4ba007b23324e16bd53a /module/plugins/crypter/XFileSharingProFolder.py | |
parent | [SimpleHoster] Better checkDownload rules (diff) | |
download | pyload-ea2d07843d369d8b8fd2aa02930bf549ce94a661.tar.xz |
Spare fixes
Diffstat (limited to 'module/plugins/crypter/XFileSharingProFolder.py')
-rw-r--r-- | module/plugins/crypter/XFileSharingProFolder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/XFileSharingProFolder.py b/module/plugins/crypter/XFileSharingProFolder.py index 5ad9f7678..55cd41931 100644 --- a/module/plugins/crypter/XFileSharingProFolder.py +++ b/module/plugins/crypter/XFileSharingProFolder.py @@ -34,7 +34,7 @@ class XFileSharingProFolder(XFSCrypter): self.HOSTER_NAME = "".join([part.capitalize() for part in re.split(r'(\.|\d+)', self.HOSTER_DOMAIN) if part != '.']) if self.HOSTER_NAME[0].isdigit(): - self.HOSTER_NAME = '_' + self.HOSTER_NAME + self.HOSTER_NAME = 'X' + self.HOSTER_NAME account = self.core.accountManager.getAccountPlugin(self.HOSTER_NAME) |