You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct text is output, but it ends up exiting with an error, but print(conn.response) doesn't run, it exits with an error
❯ /bin/python "/home/pcxlk/Desktop/from Exscript.py"
Android Console: Authentication required
Android Console: type'auth <auth_token>' to authenticate
Android Console: you can find your <auth_token>in'/home/pcxlk/.emulator_console_auth_token'
OK
localhost error: Buffer: "Android Console: Authentication required\r\nAndroid Console: type 'auth <auth_token>' to authenticate\r\nAndroid Console: you can find your <auth_token> in \r\n'/home/pcxlk/.emulator_console_auth_token'\r\nOK\r\n"
Traceback (most recent call last):
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 769, in _app_authenticate
index, match = self._waitfor(prompt_list)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 986, in _waitfor
result = self._domatch(re_list, False)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/site-packages/Exscript/protocols/telnet.py", line 99, in _domatch
raise TimeoutException(error)
Exscript.protocols.exception.TimeoutException: Error while waiting for response from device
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.11/site-packages/Exscript/workqueue/job.py", line 78, in run
self.function(self)
File "/usr/lib/python3.11/site-packages/Exscript/queue.py", line 102, in _wrapped
result = func(job, host, conn, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/site-packages/Exscript/util/decorator.py", line 117, in decorated
conn.login(flush=flush)
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 675, in login
self.authenticate(account, flush=False)
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 701, in authenticate
self.app_authenticate(app_account, flush=flush)
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 870, in app_authenticate
self._app_authenticate(account, password, flush, bailout)
File "/usr/lib/python3.11/site-packages/Exscript/protocols/protocol.py", line 774, in _app_authenticate
raise TimeoutException(msg)
Exscript.protocols.exception.TimeoutException: Buffer: "Android Console: Authentication required\r\nAndroid Console: type 'auth <auth_token>' to authenticate\r\nAndroid Console: you can find your <auth_token> in \r\n'/home/pcxlk/.emulator_console_auth_token'\r\nOK\r\n"
localhost finally failed.
The text was updated successfully, but these errors were encountered:
I tried:
But I only get one "None"
After that I also tried:
The correct text is output, but it ends up exiting with an error, but
print(conn.response)
doesn't run, it exits with an errorThe text was updated successfully, but these errors were encountered: