summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/LinkCryptWs.py4
-rw-r--r--module/plugins/crypter/NCryptIn.py4
-rw-r--r--module/plugins/crypter/RelinkUs.py6
3 files changed, 7 insertions, 7 deletions
diff --git a/module/plugins/crypter/LinkCryptWs.py b/module/plugins/crypter/LinkCryptWs.py
index f7bea666b..f235a9406 100644
--- a/module/plugins/crypter/LinkCryptWs.py
+++ b/module/plugins/crypter/LinkCryptWs.py
@@ -174,10 +174,10 @@ class LinkCryptWs(Crypter):
def handle_link_source(self, type):
- if type == 'cnl':
+ if type == "cnl":
return self.handle_CNL2()
- elif type == 'web':
+ elif type == "web":
return self.handle_web_links()
elif type in ('rsdf', 'ccf', 'dlc'):
diff --git a/module/plugins/crypter/NCryptIn.py b/module/plugins/crypter/NCryptIn.py
index 37e6a26af..4e419a9c9 100644
--- a/module/plugins/crypter/NCryptIn.py
+++ b/module/plugins/crypter/NCryptIn.py
@@ -196,9 +196,9 @@ class NCryptIn(Crypter):
return []
#: Select suitable handler
- if link_source_type == 'single':
+ if link_source_type == "single":
return self.handle_single_link()
- if link_source_type == 'cnl2':
+ if link_source_type == "cnl2":
return self.handle_CNL2()
elif link_source_type in ("rsdf", "ccf", "dlc"):
return self.handle_container(link_source_type)
diff --git a/module/plugins/crypter/RelinkUs.py b/module/plugins/crypter/RelinkUs.py
index fc8938b2e..d2f0a278b 100644
--- a/module/plugins/crypter/RelinkUs.py
+++ b/module/plugins/crypter/RelinkUs.py
@@ -185,11 +185,11 @@ class RelinkUs(Crypter):
def handle_link_source(self, source):
- if source == 'cnl2':
+ if source == "cnl2":
return self.handle_CNL2Links()
- elif source == 'dlc':
+ elif source == "dlc":
return self.handle_DLC_links()
- elif source == 'web':
+ elif source == "web":
return self.handle_WEB_links()
else:
self.error(_('Unknown source type "%s"') % source)