diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-18 10:17:34 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-18 10:17:34 +0100 |
commit | 6039164d1fb02be9db04b59d2256b5cca3a3523f (patch) | |
tree | baa51dadf47b26c647b39e390fb16e22d5768543 /module | |
parent | Fix FileSonic and Oron account plugins deprecated method signatures. (diff) | |
download | pyload-6039164d1fb02be9db04b59d2256b5cca3a3523f.tar.xz |
corrected log method
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/RealdebridCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/RealdebridCom.py b/module/plugins/hoster/RealdebridCom.py index 34c637a0e..ac55ea3f0 100644 --- a/module/plugins/hoster/RealdebridCom.py +++ b/module/plugins/hoster/RealdebridCom.py @@ -62,7 +62,7 @@ class RealdebridCom(Hoster): elif url == 'error':
self.fail("Your IP is most likely blocked. Please contact RealDebrid support")
elif page == "File's hoster is in maintenance. Try again later.":
- self.log.warning(page)
+ self.logWarning(page)
self.tempOffline()
else:
new_url = page
|