diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-28 00:06:42 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-28 00:06:42 +0100 |
commit | 9c763de9a58dd1b5de69439c3c53db347e9cbf94 (patch) | |
tree | fab1b8f284f486547ffecae581e4ef93ffc46dd9 /module/plugins/internal/Hoster.py | |
parent | [Hoster] Rewrite some routines, improve others (diff) | |
download | pyload-9c763de9a58dd1b5de69439c3c53db347e9cbf94.tar.xz |
Fix password sharing issue
Diffstat (limited to 'module/plugins/internal/Hoster.py')
-rw-r--r-- | module/plugins/internal/Hoster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py index d563d426f..2e70517d3 100644 --- a/module/plugins/internal/Hoster.py +++ b/module/plugins/internal/Hoster.py @@ -211,7 +211,7 @@ class Hoster(Base): if self.pyload.debug: self.log_debug("DOWNLOAD URL " + url, - *["%s=%s" % (key, val) for key, val in locals().items() + *["%s=%s" % (key, value) for key, value in locals().items() if key not in ("self", "url", "_[1]")]) dl_url = self.fixurl(url) |