diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-10 14:36:59 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-10 14:36:59 +0200 |
commit | 1e6846b3c435b0d71be83670d09bd019a84823ec (patch) | |
tree | e7a93e2a5583e50a1a6a8bff4ac1b84e4a230782 /module/plugins/hoster/FilecloudIo.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/FilecloudIo.py')
-rw-r--r-- | module/plugins/hoster/FilecloudIo.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilecloudIo.py b/module/plugins/hoster/FilecloudIo.py index f4c8fedd6..38d2972a1 100644 --- a/module/plugins/hoster/FilecloudIo.py +++ b/module/plugins/hoster/FilecloudIo.py @@ -104,8 +104,7 @@ class FilecloudIo(SimpleHoster): if "size" in self.info and self.info['size']: self.check_data = {"size": int(self.info['size'])} - download_url = m.group(1) - self.download(download_url) + self.link = m.group(1) else: self.fail(_("Unexpected server response")) |