summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/RapideoPl.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 03:08:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 03:08:17 +0200
commit035d8c554c9e24206f9dc6f76e17fbe9e4c3607f (patch)
tree3b173d98512f33233d4aeb2906493d3abeea2369 /module/plugins/hoster/RapideoPl.py
parentMerge pull request #1957 from GammaC0de/patch-3 (diff)
downloadpyload-035d8c554c9e24206f9dc6f76e17fbe9e4c3607f.tar.xz
Fixpack (4)
Diffstat (limited to 'module/plugins/hoster/RapideoPl.py')
-rw-r--r--module/plugins/hoster/RapideoPl.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/module/plugins/hoster/RapideoPl.py b/module/plugins/hoster/RapideoPl.py
index a43440e61..d4c753c07 100644
--- a/module/plugins/hoster/RapideoPl.py
+++ b/module/plugins/hoster/RapideoPl.py
@@ -66,15 +66,13 @@ class RapideoPl(MultiHoster):
data = self.run_file_query(pyfile.url, 'fileinfo')
except Exception:
- self.log_debug("RunFileQuery error")
- self.temp_offline()
+ self.temp_offline("Query error #1")
try:
parsed = json_loads(data)
except Exception:
- self.log_debug("Loads error")
- self.temp_offline()
+ self.temp_offline("Data not found")
self.log_debug(parsed)
@@ -100,5 +98,4 @@ class RapideoPl(MultiHoster):
self.link = self.run_file_query(pyfile.url, 'filedownload')
except Exception:
- self.log_debug("runFileQuery error #2")
- self.temp_offline()
+ self.temp_offline("Query error #2")