diff options
author | 2015-04-10 14:36:59 +0200 | |
---|---|---|
committer | 2015-04-10 14:36:59 +0200 | |
commit | 1e6846b3c435b0d71be83670d09bd019a84823ec (patch) | |
tree | e7a93e2a5583e50a1a6a8bff4ac1b84e4a230782 /module/plugins/hoster/YibaishiwuCom.py | |
parent | [SimpleHoster] Fix https://github.com/pyload/pyload/issues/1341 (diff) | |
download | pyload-1e6846b3c435b0d71be83670d09bd019a84823ec.tar.xz |
Spare code cosmetics
Diffstat (limited to 'module/plugins/hoster/YibaishiwuCom.py')
-rw-r--r-- | module/plugins/hoster/YibaishiwuCom.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/hoster/YibaishiwuCom.py b/module/plugins/hoster/YibaishiwuCom.py index 44f2b7b83..7ca6e1ac0 100644 --- a/module/plugins/hoster/YibaishiwuCom.py +++ b/module/plugins/hoster/YibaishiwuCom.py @@ -47,9 +47,8 @@ class YibaishiwuCom(SimpleHoster): for mr in mirrors: try: - url = mr['url'].replace("\\", "") - self.logDebug("Trying URL: " + url) - self.download(url) + self.link = mr['url'].replace("\\", "") + self.logDebug("Trying URL: " + self.link) break except Exception: continue |