mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix wrong variable assignment
This commit is contained in:
parent
c312592c81
commit
6309f22a65
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ def query(url,
|
|||
if cookie_jar is None:
|
||||
cookie_jar = os.path.join(opts.get('cachedir', syspaths.CACHE_DIR), 'cookies.txt')
|
||||
if session_cookie_jar is None:
|
||||
cookie_jar = os.path.join(opts.get('cachedir', syspaths.CACHE_DIR), 'cookies.session.p')
|
||||
session_cookie_jar = os.path.join(opts.get('cachedir', syspaths.CACHE_DIR), 'cookies.session.p')
|
||||
|
||||
if persist_session is True and HAS_MSGPACK:
|
||||
# TODO: This is hackish; it will overwrite the session cookie jar with
|
||||
|
|
Loading…
Add table
Reference in a new issue