summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/crypter/DuploadOrg.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
commit270c1ee85edcd1e9e10511833b422d93dfca192a (patch)
treeeb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/crypter/DuploadOrg.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/crypter/DuploadOrg.py')
-rw-r--r--pyload/plugin/crypter/DuploadOrg.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/crypter/DuploadOrg.py b/pyload/plugin/crypter/DuploadOrg.py
index f92eb2ede..445318ccc 100644
--- a/pyload/plugin/crypter/DuploadOrg.py
+++ b/pyload/plugin/crypter/DuploadOrg.py
@@ -4,13 +4,13 @@ from pyload.plugin.internal.DeadCrypter import DeadCrypter
class DuploadOrg(DeadCrypter):
- __name__ = "DuploadOrg"
- __type__ = "crypter"
- __version__ = "0.02"
+ __name = "DuploadOrg"
+ __type = "crypter"
+ __version = "0.02"
- __pattern__ = r'http://(?:www\.)?dupload\.org/folder/\d+'
- __config__ = []
+ __pattern = r'http://(?:www\.)?dupload\.org/folder/\d+'
+ __config = []
- __description__ = """Dupload.org folder decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("stickell", "l.stickell@yahoo.it")]
+ __description = """Dupload.org folder decrypter plugin"""
+ __license = "GPLv3"
+ __authors = [("stickell", "l.stickell@yahoo.it")]