diff options
Diffstat (limited to 'module/plugins/crypter/ChipDe.py')
-rw-r--r-- | module/plugins/crypter/ChipDe.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/module/plugins/crypter/ChipDe.py b/module/plugins/crypter/ChipDe.py index f57ebc387..ced06fe0c 100644 --- a/module/plugins/crypter/ChipDe.py +++ b/module/plugins/crypter/ChipDe.py @@ -12,9 +12,10 @@ class ChipDe(Crypter): __status__ = "testing" __pattern__ = r'http://(?:www\.)?chip\.de/video/.+\.html' - __config__ = [("activated" , "bool", "Activated" , True), - ("use_subfolder" , "bool", "Save package to subfolder" , True), - ("subfolder_per_pack", "bool", "Create a subfolder for each package", True)] + __config__ = [("activated" , "bool", "Activated" , True), + ("use_premium" , "bool", "Use premium account if available" , True), + ("use_subfolder" , "bool", "Save package to subfolder" , True), + ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] __description__ = """Chip.de decrypter plugin""" __license__ = "GPLv3" @@ -30,8 +31,8 @@ class ChipDe(Crypter): self.fail(_("Failed to find the URL")) else: - self.urls = [f.group(1)] - self.log_debug("The file URL is %s" % self.urls[0]) + self.links = [f.group(1)] + self.log_debug("The file URL is %s" % self.links[0]) getInfo = create_getInfo(ChipDe) |