summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/XupPl.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-13 15:56:57 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-13 15:56:57 +0100
commitacc46fc3497a66a427b795b4a22c6e71d69185a1 (patch)
tree2d315b838a76435fc456b972c99c28d1732b2f70 /pyload/plugins/crypter/XupPl.py
parentCode fixes (diff)
downloadpyload-acc46fc3497a66a427b795b4a22c6e71d69185a1.tar.xz
Update
Diffstat (limited to 'pyload/plugins/crypter/XupPl.py')
-rw-r--r--pyload/plugins/crypter/XupPl.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/pyload/plugins/crypter/XupPl.py b/pyload/plugins/crypter/XupPl.py
deleted file mode 100644
index 0a01a6c36..000000000
--- a/pyload/plugins/crypter/XupPl.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from pyload.plugins.Crypter import Crypter
-
-
-class XupPl(Crypter):
- __name = "XupPl"
- __type = "crypter"
- __version = "0.10"
-
- __pattern = r'https?://(?:[^/]*\.)?xup\.pl/.*'
- __config = [("use_subfolder", "bool", "Save package to subfolder", True),
- ("subfolder_per_package", "bool", "Create a subfolder for each package", True)]
-
- __description = """Xup.pl decrypter plugin"""
- __license = "GPLv3"
- __authors = [("z00nx", "z00nx0@gmail.com")]
-
-
- def decrypt(self, pyfile):
- header = self.load(pyfile.url, just_header=True)
- if 'location' in header:
- self.urls = [header['location']]
- else:
- self.fail(_("Unable to find link"))