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
In 2.6.4 version, in the start_shell utility, in the open() method, on line 127:
self.send("start shell" + self.shell_type)
The code creates a string with no space, e.g. self.send("start shellcsh")>
This results in syntax error on device but creates no Exception in the code.
Code should be:
self.send("start shell " + self.shell_type)
plus relevant code to catch syntax error.
The text was updated successfully, but these errors were encountered:
In 2.6.4 version, in the start_shell utility, in the open() method, on line 127:
The code creates a string with no space, e.g. self.send("start shellcsh")>
This results in syntax error on device but creates no Exception in the code.
Code should be:
plus relevant code to catch syntax error.
The text was updated successfully, but these errors were encountered: