summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/OronCom.py
diff options
context:
space:
mode:
authorGravatar CryNickSystems <d.hardtke@yahoo.de> 2011-12-30 20:57:35 +0100
committerGravatar CryNickSystems <d.hardtke@yahoo.de> 2011-12-30 20:57:35 +0100
commitc79762afb617604e9e55c3bebde59ff850885ed7 (patch)
tree88b513183c5dfe9581d2e08666fff5a3939c43ba /module/plugins/hoster/OronCom.py
parentOronCom improve (diff)
downloadpyload-c79762afb617604e9e55c3bebde59ff850885ed7.tar.xz
OronCom fix - thx petrucci77
Diffstat (limited to 'module/plugins/hoster/OronCom.py')
-rwxr-xr-xmodule/plugins/hoster/OronCom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/OronCom.py b/module/plugins/hoster/OronCom.py
index 0be840d76..0b547e516 100755
--- a/module/plugins/hoster/OronCom.py
+++ b/module/plugins/hoster/OronCom.py
@@ -15,7 +15,7 @@ def getInfo(urls):
result.append((url, 0, 1, url))
continue
- m = re.search(OronCom.FILE_INFO_PATTERN, html)
+ m = re.search(OronCom.FILE_INFO_PATTERN, html, re.MULTILINE)
if m:
name = m.group(1)
hSize = float(m.group(2).replace(",", "."))
@@ -33,10 +33,10 @@ class OronCom(Hoster):
__name__ = "OronCom"
__type__ = "hoster"
__pattern__ = r"http://(?:www.)?oron.com/"
- __version__ = "0.13"
+ __version__ = "0.14"
__description__ = "File Hoster: Oron.com"
__author_name__ = ("chrox", "DHMH")
- __author_mail__ = ("chrox@pyload.org", "DHMH@pyload.org")
+ __author_mail__ = ("chrox@pyload.org", "webmaster@pcProfil.de")
FILE_INFO_PATTERN = r'(?:Filename|Dateiname): <b class="f_arial f_14px">(.*?)</b>\s*<br>\s*(?:Größe|File size): ([0-9,\.]+) (Kb|Mb|Gb)'