diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-22 21:31:19 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-22 21:31:19 +0100 |
commit | cf4ded052964047de88d676045329b8fa4fca2dc (patch) | |
tree | 5864aad4f34b273044018393b6bb9be690162050 /module/plugins/crypter/RelinkUs.py | |
parent | [CaptchaService] Merge together ReCaptcha versions (diff) | |
download | pyload-cf4ded052964047de88d676045329b8fa4fca2dc.tar.xz |
Update plugins after CaptchaService changes
Diffstat (limited to 'module/plugins/crypter/RelinkUs.py')
-rw-r--r-- | module/plugins/crypter/RelinkUs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/plugins/crypter/RelinkUs.py b/module/plugins/crypter/RelinkUs.py index 0fd80d593..a6014c866 100644 --- a/module/plugins/crypter/RelinkUs.py +++ b/module/plugins/crypter/RelinkUs.py @@ -191,7 +191,7 @@ class RelinkUs(Crypter): elif source == 'web': return self.handleWEBLinks() else: - self.error('Unknown source type "%s" (this is probably a bug)' % source) + self.error(_('Unknown source type "%s"') % source) def handleCNL2Links(self): @@ -223,8 +223,10 @@ class RelinkUs(Crypter): with open(dlc_filepath, "wb") as f: f.write(dlc) package_links.append(dlc_filepath) + except Exception: - self.fail("Unable to download DLC container") + self.fail(_("Unable to download DLC container")) + return package_links |