diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-23 22:34:36 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-23 22:34:36 +0200 |
commit | 8cde8385b0224f8fa26758f6c2b6b782e5fb3663 (patch) | |
tree | 75278386e78bd63ce48631b8a7dc95ea82911266 /module/plugins/crypter/NCryptIn.py | |
parent | [FilefactoryCom] Fix handleFree (diff) | |
download | pyload-8cde8385b0224f8fa26758f6c2b6b782e5fb3663.tar.xz |
Call error instead fail in some plugins
Diffstat (limited to 'module/plugins/crypter/NCryptIn.py')
-rw-r--r-- | module/plugins/crypter/NCryptIn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/NCryptIn.py b/module/plugins/crypter/NCryptIn.py index ef696dbd8..54b6eeba2 100644 --- a/module/plugins/crypter/NCryptIn.py +++ b/module/plugins/crypter/NCryptIn.py @@ -205,7 +205,7 @@ class NCryptIn(Crypter): elif link_source_type == "web": return self.handleWebLinks() else: - self.fail('unknown source type "%s" (this is probably a bug)' % link_source_type) + self.error('unknown source type "%s" (this is probably a bug)' % link_source_type) def handleSingleLink(self): |