From dea9439b3d782f65e4466e39a5fadf5d2c702f49 Mon Sep 17 00:00:00 2001 From: mukkino <25956452+fabiolichinchi@users.noreply.github.com> Date: Fri, 14 Oct 2022 00:30:05 +0000 Subject: [PATCH] Fixed a problem with a variable Variable name mismatched was throwing an error --- pinterest-downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinterest-downloader.py b/pinterest-downloader.py index d7a9d00..fae08ab 100755 --- a/pinterest-downloader.py +++ b/pinterest-downloader.py @@ -1632,7 +1632,7 @@ def run_library_main(arg_path :str, arg_dir :str, arg_thread_max :int, arg_cut : PIN_SESSION = get_session(0, proxies, cookies) IMG_SESSION = get_session(3, proxies, cookies) V_SESSION = get_session(4, proxies, cookies) - get_pin_info(pin_id.strip(), arg_log_timestamp, url_path, arg_force, arg_img_only, arg_v_only, arg_dir, arg_cut, arg_el, fs_f_max, IMG_SESSION, V_SESSION, PIN_SESSION, proxies, cookie_file, False) + get_pin_info(pin_id.strip(), arg_log_timestamp, url_path, arg_force, arg_img_only, arg_v_only, arg_dir, arg_cut, arg_el, fs_f_max, IMG_SESSION, V_SESSION, PIN_SESSION, proxies, cookies, False) if len(slash_path) == 3: sec_path = '/'.join(slash_path)