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 ProcessExecutionError is raised when trying to copy file or write data over SSH.
Windows 10 22H2
Python3.12
plumbum v1.9.0
I found what 2 reasons of this error:
plumbum/machines/remote.py:436. In python3.12 in NamedTemporaryFile() was added new parameter delete_on_close=True.This cause an error in this case.
plumbum use slash file path format(e.g: /C/Users/GAVRIL~1.S/AppData/Local/Temp/tmpon7h29zf). But Windows scp command fail with this path. See error.log for detail.
I try to fix this error as write in fix.path. After this fix it copy and write files successfully.
The ProcessExecutionError is raised when trying to copy file or write data over SSH.
Windows 10 22H2
Python3.12
plumbum v1.9.0
I found what 2 reasons of this error:
I try to fix this error as write in fix.path. After this fix it copy and write files successfully.
Apply:
fix.patch
plumbum_test.py.txt
error.log
The text was updated successfully, but these errors were encountered: