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/RelinkUs.py | |
parent | [FilefactoryCom] Fix handleFree (diff) | |
download | pyload-8cde8385b0224f8fa26758f6c2b6b782e5fb3663.tar.xz |
Call error instead fail in some plugins
Diffstat (limited to 'module/plugins/crypter/RelinkUs.py')
-rw-r--r-- | module/plugins/crypter/RelinkUs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/RelinkUs.py b/module/plugins/crypter/RelinkUs.py index 09b83b82b..b4ee31568 100644 --- a/module/plugins/crypter/RelinkUs.py +++ b/module/plugins/crypter/RelinkUs.py @@ -188,7 +188,7 @@ class RelinkUs(Crypter): elif source == 'web': return self.handleWEBLinks() else: - self.fail('Unknown source [%s] (this is probably a bug)' % source) + self.error('Unknown source [%s] (this is probably a bug)' % source) def handleCNL2Links(self): |