diff options
Diffstat (limited to 'module/plugins/internal')
| -rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 4 | ||||
| -rw-r--r-- | module/plugins/internal/XFSPHoster.py | 6 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 31102b6fa..f6783cffb 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -91,8 +91,8 @@ class SimpleCrypter(Crypter):          if isinstance(self.COOKIES, list):              set_cookies(self.req.cj, self.COOKIES) -        url = self.pyfile.url = replace_patterns(self.pyfile.url, self.URL_REPLACEMENTS) -        self.html = getURL(url, decode=not self.TEXT_ENCODING, cookies=bool(self.COOKIES)) +        self.pyfile.url = replace_patterns(self.pyfile.url, self.URL_REPLACEMENTS) +        self.html = getURL(self.pyfile.url, decode=not self.TEXT_ENCODING, cookies=bool(self.COOKIES))      def decrypt(self, pyfile): diff --git a/module/plugins/internal/XFSPHoster.py b/module/plugins/internal/XFSPHoster.py index edbe8a0a2..44b2006ae 100644 --- a/module/plugins/internal/XFSPHoster.py +++ b/module/plugins/internal/XFSPHoster.py @@ -201,9 +201,9 @@ class XFSPHoster(SimpleHoster):          header = self.load(self.pyfile.url, just_header=True)          if 'location' in header:  # Direct link -            self.startDownload(self.pyfile.url) +            self.startDownload(header['location'])          else: -            self.retry(reason="OVR link location not found") +            self.retry(reason=_("OVR link location not found"))      def startDownload(self, link): @@ -232,7 +232,7 @@ class XFSPHoster(SimpleHoster):                  self.wantReconnect = True                  self.retry(25, 1 * 60 * 60, "Download limit exceeded")              elif 'countdown' in self.errmsg or 'Expired' in self.errmsg: -                self.retry(reason="Link expired") +                self.retry(reason=_("Link expired"))              elif 'maintenance' in self.errmsg or 'maintainance' in self.errmsg:                  self.tempOffline()              elif 'download files up to' in self.errmsg: | 
