summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/OronCom.py
diff options
context:
space:
mode:
authorGravatar Pedro Algarvio <pedro@algarvio.me> 2012-02-05 06:16:58 +0100
committerGravatar Pedro Algarvio <pedro@algarvio.me> 2012-02-05 06:16:58 +0100
commit69230e264359f5a53faec5ddb2f768255cab0c77 (patch)
tree1daabda15143e76c59bfa7511512cee9753e7e94 /module/plugins/hoster/OronCom.py
parentFix OronComFolder regex folder matching. (diff)
downloadpyload-69230e264359f5a53faec5ddb2f768255cab0c77.tar.xz
Make sure that the Oron hoster plugins does not match Oron folders.
Diffstat (limited to 'module/plugins/hoster/OronCom.py')
-rwxr-xr-xmodule/plugins/hoster/OronCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/OronCom.py b/module/plugins/hoster/OronCom.py
index e0be91486..e659beee5 100755
--- a/module/plugins/hoster/OronCom.py
+++ b/module/plugins/hoster/OronCom.py
@@ -31,8 +31,8 @@ def getInfo(urls):
class OronCom(Hoster):
__name__ = "OronCom"
__type__ = "hoster"
- __pattern__ = r"http://(?:www.)?oron.com/"
- __version__ = "0.13"
+ __pattern__ = r"http://(?:www\.)?oron.com/(?!folder/)"
+ __version__ = "0.14"
__description__ = "File Hoster: Oron.com"
__author_name__ = ("chrox", "DHMH")
__author_mail__ = ("chrox@pyload.org", "DHMH@pyload.org")