diff --git a/Scripts/py/EUserv_extend.py b/Scripts/py/EUserv_extend.py index 545423b..c8dbe3e 100644 --- a/Scripts/py/EUserv_extend.py +++ b/Scripts/py/EUserv_extend.py @@ -68,7 +68,7 @@ def login(username, password) -> (str, requests.session): f = session.post(url, headers=headers, data=login_data) f.raise_for_status() - if f.text.find('Hello') == -1: + if f.text.find('Hello') == -1 and f.text.find('Confirm or change your customer data here') == -1: return '-1', session return sess_id, session