Browse Source

fix: use safe .get method by accessing resp fields

Otherwise it wont go to 'else' section and will failed with KeyError exception
pull/426/head
Ilya 2 years ago
committed by GitHub
parent
commit
449e13a9b3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      steam/webauth.py

2
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

Loading…
Cancel
Save