diff options
author | 2015-07-19 13:42:29 +0200 | |
---|---|---|
committer | 2015-07-19 13:42:29 +0200 | |
commit | 33e2b36605e41962a2e8eee304a7f3d29690ffa8 (patch) | |
tree | e4e5fb38b8882ffe868f4f1ca965659f42b92612 /module/plugins/hoster/ShareonlineBiz.py | |
parent | [OCR] Fix __init__ (diff) | |
download | pyload-33e2b36605e41962a2e8eee304a7f3d29690ffa8.tar.xz |
[OCR] Fix __init__ (2)
Diffstat (limited to 'module/plugins/hoster/ShareonlineBiz.py')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index da1509c94..6a2ee0b09 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -40,8 +40,8 @@ class ShareonlineBiz(SimpleHoster): info = super(ShareonlineBiz, cls).api_info(url) field = get_url("http://api.share-online.biz/linkcheck.php", - get={'md5' : "1", - 'links': re.match(cls.__pattern__, url).group("ID")}).split(";") + get={'md5' : "1", + 'links': re.match(cls.__pattern__, url).group("ID")}).split(";") try: if field[1] == "OK": |