Closed itschasa closed 1 week ago
When print_cli is set to true on the main mux function, it can fail as sh.which(...) (in utils/download.py:get_executable) does not always return a string and can return a WindowsPath object, causing joincommand(...) (in muxing/mux.py:mux) to fail.
print_cli
sh.which(...)
utils/download.py:get_executable
WindowsPath
joincommand(...)
muxing/mux.py:mux
Before change:
After change: No error (yipee)
Kinda weird that I never ran into that but fair enough I guess
When
print_cli
is set to true on the main mux function, it can fail assh.which(...)
(inutils/download.py:get_executable
) does not always return a string and can return aWindowsPath
object, causingjoincommand(...)
(inmuxing/mux.py:mux
) to fail.Before change:
After change: No error (yipee)