From 9078a17400a9b2d6997ed06092f2cabac288adaf Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Tue, 21 Jun 2022 19:27:19 +0200 Subject: [PATCH] fix py3.7 --- vk_url_scraper/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vk_url_scraper/utils.py b/vk_url_scraper/utils.py index b51de5a..a9d1389 100644 --- a/vk_url_scraper/utils.py +++ b/vk_url_scraper/utils.py @@ -15,7 +15,7 @@ class DateTimeEncoder(json.JSONEncoder): def captcha_handler(captcha): key = input( - f"CAPTCHA DETECTED, please solve it and input the solution. {captcha.sid=} {captcha.get_url()=}:" + f"CAPTCHA DETECTED, please solve it and input the solution. url={captcha.get_url()}:" ).strip() return captcha.try_again(key)