webcomics / pywine

Docker image for Wine with Python
MIT License
93 stars 26 forks source link

Can't initialize sys standard streams #17

Closed fivann closed 2 years ago

fivann commented 2 years ago

Hello team! I faced this error running Pywine as part of Jenkins pipeline with Docker agent:

Current thread 0x000000d4 (most recent call first):

===== What I'm doing wrong?
TobiX commented 2 years ago

I think I had similar problem when running in Jenkins, try piping the stdout and stderr into a file (for example, appending 2>&1 | tee log.txt to the line)

fivann commented 2 years ago

I think I had similar problem when running in Jenkins, try piping the stdout and stderr into a file (for example, appending 2>&1 | tee log.txt to the line)

Thank you! It works for me.