diff options
Diffstat (limited to 'module/plugins/crypter/XupPl.py')
-rw-r--r-- | module/plugins/crypter/XupPl.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/crypter/XupPl.py b/module/plugins/crypter/XupPl.py index 230988318..41abc861e 100644 --- a/module/plugins/crypter/XupPl.py +++ b/module/plugins/crypter/XupPl.py @@ -4,13 +4,14 @@ from module.plugins.internal.Crypter import Crypter class XupPl(Crypter): - __name = "XupPl" + __name__ = "XupPl" __type__ = "crypter" __version__ = "0.12" __status__ = "testing" __pattern__ = r'https?://(?:[^/]*\.)?xup\.pl/.+' - __config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True), + __config__ = [("activated", "bool", "Activated", True), + ("use_subfolder" , "bool", "Save package to subfolder" , True), ("subfolder_per_pack", "bool", "Create a subfolder for each package", True)] __description__ = """Xup.pl decrypter plugin""" |