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
I believe the code in ssh_tty.py's read_prompt method has several errors. What's puzzling me though is that no one else seems to have encountered an exception when the current code is executed. I see examples on the web with using netconify with ssh.
sleep is imported from time currently. The import should be changed to 'from time import sleep, time. Once that change is made, both calls to sleep should be simply sleep.
I'll submit a PR for the fixes.
The text was updated successfully, but these errors were encountered:
I believe the code in ssh_tty.py's
read_prompt
method has several errors. What's puzzling me though is that no one else seems to have encountered an exception when the current code is executed. I see examples on the web with using netconify with ssh.start
variable should bemark_start
sleep
is imported from time currently. The import should be changed to 'from time import sleep, time. Once that change is made, both calls tosleep
should be simplysleep
.I'll submit a PR for the fixes.
The text was updated successfully, but these errors were encountered: