diff options
author | 2015-12-28 00:06:42 +0100 | |
---|---|---|
committer | 2015-12-28 00:06:42 +0100 | |
commit | 9c763de9a58dd1b5de69439c3c53db347e9cbf94 (patch) | |
tree | fab1b8f284f486547ffecae581e4ef93ffc46dd9 /module/plugins/internal/Plugin.py | |
parent | [Hoster] Rewrite some routines, improve others (diff) | |
download | pyload-9c763de9a58dd1b5de69439c3c53db347e9cbf94.tar.xz |
Fix password sharing issue
Diffstat (limited to 'module/plugins/internal/Plugin.py')
-rw-r--r-- | module/plugins/internal/Plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Plugin.py b/module/plugins/internal/Plugin.py index 43284f6a8..9357ea8fb 100644 --- a/module/plugins/internal/Plugin.py +++ b/module/plugins/internal/Plugin.py @@ -176,8 +176,8 @@ class Plugin(object): """ if self.pyload.debug: self.log_debug("LOAD URL " + url, - *["%s=%s" % (key, safe_format(val, self.info['login']['password']) if self.__type__ == "account" else val) - for key, val in locals().items() if key not in ("self", "url", "_[1]")]) + *["%s=%s" % (key, value) for key, value in locals().items() + if key not in ("self", "url", "_[1]")]) url = fixurl(url, unquote=True) #: Recheck in 0.4.10 |