diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-25 02:53:05 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-25 02:53:05 +0200 |
commit | e3f5280529921100f48bb8a79853bf480c7611e4 (patch) | |
tree | f1005d656b123b1b7c5ffb9e4ef1e39c7fa4460e /module/plugins/hoster/DataportCz.py | |
parent | Spare code cosmetics (diff) | |
download | pyload-e3f5280529921100f48bb8a79853bf480c7611e4.tar.xz |
Replace single quotes with doubles in self.error and self.fail msg
Diffstat (limited to 'module/plugins/hoster/DataportCz.py')
-rw-r--r-- | module/plugins/hoster/DataportCz.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/DataportCz.py b/module/plugins/hoster/DataportCz.py index 6fcbfc2ad..e4dfb0ad1 100644 --- a/module/plugins/hoster/DataportCz.py +++ b/module/plugins/hoster/DataportCz.py @@ -32,19 +32,19 @@ class DataportCz(SimpleHoster): action, inputs = self.parseHtmlForm('free_download_form') self.logDebug(action, inputs) if not action or not inputs: - self.error('free_download_form') + self.error("free_download_form") if "captchaId" in inputs and inputs['captchaId'] in captchas: inputs['captchaCode'] = captchas[inputs['captchaId']] else: - self.error('captcha') + self.error("captcha") self.html = self.download("http://www.dataport.cz%s" % action, post=inputs) check = self.checkDownload({"captcha": 'alert("\u0160patn\u011b opsan\u00fd k\u00f3d z obr\u00e1zu");', "slot": 'alert("Je n\u00e1m l\u00edto, ale moment\u00e1ln\u011b nejsou'}) if check == "captcha": - self.error('invalid captcha') + self.error("invalid captcha") elif check == "slot": self.logDebug("No free slots - wait 60s and retry") self.wait(60, False) |