diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-19 13:42:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-19 13:42:29 +0200 |
commit | 33e2b36605e41962a2e8eee304a7f3d29690ffa8 (patch) | |
tree | e4e5fb38b8882ffe868f4f1ca965659f42b92612 /module/plugins/hoster/FshareVn.py | |
parent | [OCR] Fix __init__ (diff) | |
download | pyload-33e2b36605e41962a2e8eee304a7f3d29690ffa8.tar.xz |
[OCR] Fix __init__ (2)
Diffstat (limited to 'module/plugins/hoster/FshareVn.py')
-rw-r--r-- | module/plugins/hoster/FshareVn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/FshareVn.py b/module/plugins/hoster/FshareVn.py index 3ece85c96..4fc77ab26 100644 --- a/module/plugins/hoster/FshareVn.py +++ b/module/plugins/hoster/FshareVn.py @@ -11,7 +11,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, parse_fileInfo def get_info(urls): for url in urls: html = get_url("http://www.fshare.vn/check_link.php", - post={'action': "check_link", 'arrlinks': url}) + post={'action': "check_link", 'arrlinks': url}) yield parse_fileInfo(FshareVn, url, html) |