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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
steam/webauth.py
|
@ -190,7 +190,7 @@ class WebAuth(object): |
|
|
self._load_key() |
|
|
self._load_key() |
|
|
resp = self._send_login(password=password, captcha=captcha, email_code=email_code, twofactor_code=twofactor_code) |
|
|
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.logged_on = True |
|
|
self.password = self.captcha_code = '' |
|
|
self.password = self.captcha_code = '' |
|
|
self.captcha_gid = -1 |
|
|
self.captcha_gid = -1 |
|
|