summaryrefslogtreecommitdiffstats
path: root/pyload/plugins
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-10-11 18:48:00 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-10-11 18:48:00 +0200
commitf6a3d193f87fe709366db05afe638efcaac5de2c (patch)
tree6ad4d0cec6660283f447d505508381a3d3840275 /pyload/plugins
parentRemoved dead plugins. (diff)
downloadpyload-f6a3d193f87fe709366db05afe638efcaac5de2c.tar.xz
Moved new plugins to pyload
Diffstat (limited to 'pyload/plugins')
-rw-r--r--pyload/plugins/internal/DeadCrypter.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/pyload/plugins/internal/DeadCrypter.py b/pyload/plugins/internal/DeadCrypter.py
new file mode 100644
index 000000000..805f781af
--- /dev/null
+++ b/pyload/plugins/internal/DeadCrypter.py
@@ -0,0 +1,14 @@
+from module.plugins.Crypter import Crypter as _Crypter
+
+
+class DeadCrypter(_Crypter):
+ __name__ = "DeadCrypter"
+ __type__ = "crypter"
+ __pattern__ = r""
+ __version__ = "0.01"
+ __description__ = """Crypter is no longer available"""
+ __author_name__ = ("stickell")
+ __author_mail__ = ("l.stickell@yahoo.it")
+
+ def setup(self):
+ self.fail("Crypter is no longer available")