summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-22 10:12:21 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-22 10:12:21 +0200
commitf00dbe52cee93a0aad9b6747419ff7271adb6e84 (patch)
tree9e3231ba09b799cd50a32b5b341563e93d264467
parentLoadTo.py] Improve checkDownload (diff)
downloadpyload-f00dbe52cee93a0aad9b6747419ff7271adb6e84.tar.xz
Code cosmetics
-rwxr-xr-xmodule/plugins/hooks/Captcha9kw.py2
-rw-r--r--module/plugins/hoster/DevhostSt.py2
-rw-r--r--module/plugins/hoster/DropboxCom.py2
-rw-r--r--module/plugins/hoster/FilepupNet.py2
-rw-r--r--module/plugins/hoster/KingfilesNet.py2
-rw-r--r--module/plugins/hoster/SpeedyshareCom.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py
index 4eb7e0ffc..6485db22b 100755
--- a/module/plugins/hooks/Captcha9kw.py
+++ b/module/plugins/hooks/Captcha9kw.py
@@ -15,7 +15,7 @@ from module.plugins.Hook import Hook
class Captcha9kw(Hook):
__name__ = "Captcha9kw"
__type__ = "hook"
- __version__ = "0.09"
+ __version__ = "0.10"
__config__ = [("activated", "bool", "Activated", False),
("force", "bool", "Force CT even if client is connected", True),
diff --git a/module/plugins/hoster/DevhostSt.py b/module/plugins/hoster/DevhostSt.py
index 6ad6a551f..643538e4d 100644
--- a/module/plugins/hoster/DevhostSt.py
+++ b/module/plugins/hoster/DevhostSt.py
@@ -43,7 +43,7 @@ class DevhostSt(SimpleHoster):
check = self.checkDownload({'html': re.compile("html")})
if check == "html":
- self.error("Downloaded file is an html file")
+ self.error("Downloaded file is an html page")
getInfo = create_getInfo(DevhostSt)
diff --git a/module/plugins/hoster/DropboxCom.py b/module/plugins/hoster/DropboxCom.py
index c0f8e8306..efc711bd4 100644
--- a/module/plugins/hoster/DropboxCom.py
+++ b/module/plugins/hoster/DropboxCom.py
@@ -36,7 +36,7 @@ class DropboxCom(SimpleHoster):
check = self.checkDownload({'html': re.compile("html")})
if check == "html":
- self.error("Downloaded file is an html file")
+ self.error("Downloaded file is an html page")
getInfo = create_getInfo(DropboxCom)
diff --git a/module/plugins/hoster/FilepupNet.py b/module/plugins/hoster/FilepupNet.py
index 366cefc88..2a1c43913 100644
--- a/module/plugins/hoster/FilepupNet.py
+++ b/module/plugins/hoster/FilepupNet.py
@@ -45,7 +45,7 @@ class FilepupNet(SimpleHoster):
check = self.checkDownload({'html': re.compile("html")})
if check == "html":
- self.error("Downloaded file is an html file")
+ self.error("Downloaded file is an html page")
getInfo = create_getInfo(FilepupNet)
diff --git a/module/plugins/hoster/KingfilesNet.py b/module/plugins/hoster/KingfilesNet.py
index c6dbd1e5c..7211aa378 100644
--- a/module/plugins/hoster/KingfilesNet.py
+++ b/module/plugins/hoster/KingfilesNet.py
@@ -81,7 +81,7 @@ class KingfilesNet(SimpleHoster):
check = self.checkDownload({'html': re.compile("<html>")})
if check == "html":
- self.error("Downloaded file is an html file")
+ self.error("Downloaded file is an html page")
getInfo = create_getInfo(KingfilesNet)
diff --git a/module/plugins/hoster/SpeedyshareCom.py b/module/plugins/hoster/SpeedyshareCom.py
index 0696ae810..98d74631f 100644
--- a/module/plugins/hoster/SpeedyshareCom.py
+++ b/module/plugins/hoster/SpeedyshareCom.py
@@ -45,7 +45,7 @@ class SpeedyshareCom(SimpleHoster):
check = self.checkDownload({'html': re.compile("html")})
if check == "html":
- self.error("Downloaded file is an html file")
+ self.error("Downloaded file is an html page")
getInfo = create_getInfo(SpeedyshareCom)