InputArgs icon indicating copy to clipboard operation
InputArgs copied to clipboard

Fix async kwargs

Open eblot opened this issue 7 years ago • 0 comments

This proposed fix addresses issue #10

self.sl is a dictionary that is given as argument to AsyncProcess, but it ends up mapped to path argument, instead of I guess being used as a keyword argument.

AsyncProcess(..., path="", shell=False) ends up called as path={shell:True} on my environment, hence the reported error message.

I might not be the proper fix.

eblot avatar Oct 14 '18 12:10 eblot