From 449e13a9b3115a26f47cbfca0eaae6d9fc189ddc Mon Sep 17 00:00:00 2001 From: Ilya Date: Mon, 23 Jan 2023 18:10:31 +0000 Subject: [PATCH] fix: use safe .get method by accessing resp fields Otherwise it wont go to 'else' section and will failed with KeyError exception --- steam/webauth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/webauth.py b/steam/webauth.py index aeabbab..9dd9aa0 100644 --- a/steam/webauth.py +++ b/steam/webauth.py @@ -190,7 +190,7 @@ class WebAuth(object): self._load_key() resp = self._send_login(password=password, captcha=captcha, email_code=email_code, twofactor_code=twofactor_code) - if resp['success'] and resp['login_complete']: + if resp.get('success') and resp.get('login_complete'): self.logged_on = True self.password = self.captcha_code = '' self.captcha_gid = -1