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 just recently installed Pythonista 3 on my iPad and installed Stash. When trying to ssh into a remote server, I receive the following error:
Exception in thread Thread-98:
Traceback (most recent call last):
File "/var/containers/Bundle/Application/3B51BA3D-0C95-4DFC-BD6F-9478B30E671D/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/threading.py", line 917, in _bootstrap_inner
self.run()
File "/var/containers/Bundle/Application/3B51BA3D-0C95-4DFC-BD6F-9478B30E671D/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/threading.py", line 865, in run
self._target(*self._args, **self._kwargs)
File "Documents/site-packages/stash/bin/ssh.py", line 135, in stdout_thread
self.update_screen()
File "Documents/site-packages/stash/bin/ssh.py", line 142, in update_screen
_stash.main_screen.load_pyte_screen(self.screen)
File "/private/var/mobile/Containers/Shared/AppGroup/AADCB172-A760-4CAD-BB1C-21F0308B03B5/Pythonista3/Documents/site-packages/stash/system/shscreens.py", line 577, in load_pyte_screen
c = pyte_screen.buffer[idx_line][idx_column]
TypeError: list indices must be integers or slices, not float
In reading some other threads I’ve gone through and installed paramiko and wcwidth in an effor to help resolve the issue. Any suggestions/guidance would be appreciated.
The text was updated successfully, but these errors were encountered:
Apologies for the delay. My guess would be that stash uses / division for line/column indices. On Python 3 / always produces a float. The fix is simple: replace it with flooring division //.
I just recently installed Pythonista 3 on my iPad and installed Stash. When trying to ssh into a remote server, I receive the following error:
In reading some other threads I’ve gone through and installed paramiko and wcwidth in an effor to help resolve the issue. Any suggestions/guidance would be appreciated.
The text was updated successfully, but these errors were encountered: