summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/VeohCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/VeohCom.py')
-rw-r--r--module/plugins/hoster/VeohCom.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/module/plugins/hoster/VeohCom.py b/module/plugins/hoster/VeohCom.py
index 57b24623b..7d46ee335 100644
--- a/module/plugins/hoster/VeohCom.py
+++ b/module/plugins/hoster/VeohCom.py
@@ -8,7 +8,8 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class VeohCom(SimpleHoster):
__name__ = "VeohCom"
__type__ = "hoster"
- __version__ = "0.22"
+ __version__ = "0.23"
+ __status__ = "testing"
__pattern__ = r'http://(?:www\.)?veoh\.com/(tv/)?(watch|videos)/(?P<ID>v\w+)'
__config__ = [("use_premium", "bool" , "Use premium account if available", True ),
@@ -28,13 +29,13 @@ class VeohCom(SimpleHoster):
def setup(self):
- self.resumeDownload = True
+ self.resume_download = True
self.multiDL = True
- self.chunkLimit = -1
+ self.chunk_limit = -1
- def handleFree(self, pyfile):
- quality = self.getConfig('quality')
+ def handle_free(self, pyfile):
+ quality = self.get_config('quality')
if quality == "Auto":
quality = ("High", "Low")
@@ -46,7 +47,7 @@ class VeohCom(SimpleHoster):
self.link = m.group(1).replace("\\", "")
return
else:
- self.logInfo(_("No %s quality video found") % q.upper())
+ self.log_info(_("No %s quality video found") % q.upper())
else:
self.fail(_("No video found!"))