summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/PromptfileCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/PromptfileCom.py')
-rw-r--r--module/plugins/hoster/PromptfileCom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/PromptfileCom.py b/module/plugins/hoster/PromptfileCom.py
index 4af762e29..641c1f642 100644
--- a/module/plugins/hoster/PromptfileCom.py
+++ b/module/plugins/hoster/PromptfileCom.py
@@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class PromptfileCom(SimpleHoster):
__name__ = "PromptfileCom"
__type__ = "hoster"
- __version__ = "0.11"
+ __version__ = "0.12"
__pattern__ = r'https?://(?:www\.)?promptfile\.com/'
@@ -28,7 +28,7 @@ class PromptfileCom(SimpleHoster):
# STAGE 1: get link to continue
m = re.search(self.CHASH_PATTERN, self.html)
if m is None:
- self.parseError("Unable to detect chash")
+ self.error("Unable to detect chash")
chash = m.group(1)
self.logDebug("Read chash %s" % chash)
# continue to stage2
@@ -37,7 +37,7 @@ class PromptfileCom(SimpleHoster):
# STAGE 2: get the direct link
m = re.search(self.LINK_PATTERN, self.html)
if m is None:
- self.parseError("Unable to detect direct link")
+ self.error("Unable to detect direct link")
direct = m.group(1)
self.logDebug("Found direct link: " + direct)
self.download(direct, disposition=True)