diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-15 16:00:52 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-15 16:00:52 +0100 |
commit | 8a54e49327df06a8955fc8850756ca52252f6e4f (patch) | |
tree | ec115d8d83d731c03d037997c35af13fdfc2c638 /pyload/plugins/crypter/LinkCryptWs.py | |
parent | Update PluginManager (diff) | |
download | pyload-8a54e49327df06a8955fc8850756ca52252f6e4f.tar.xz |
Code cosmetics
Diffstat (limited to 'pyload/plugins/crypter/LinkCryptWs.py')
-rw-r--r-- | pyload/plugins/crypter/LinkCryptWs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/LinkCryptWs.py b/pyload/plugins/crypter/LinkCryptWs.py index bbcef02fd..4eb48deae 100644 --- a/pyload/plugins/crypter/LinkCryptWs.py +++ b/pyload/plugins/crypter/LinkCryptWs.py @@ -188,10 +188,10 @@ class LinkCryptWs(Crypter): def handleLinkSource(self, type_): - if type_ is 'cnl': + if type_ == 'cnl': return self.handleCNL2() - elif type_ is 'web': + elif type_ == 'web': return self.handleWebLinks() elif type_ in ('rsdf', 'ccf', 'dlc'): |