Description of the problem
When using mne.utils.run_subprocess(), each line printed to stdout by the subprocess will be printed with an additional empty line immediately after.
Steps to reproduce
# subp.py
print('foo')
print('bar')
# main.py
from mne.utils import run_subprocess
run_subprocess(command=['python', 'subp.py'])
Run via:
Expected results
Actual results
Additional information
This is with main
Description of the problem
When using
mne.utils.run_subprocess(), each line printed tostdoutby the subprocess will be printed with an additional empty line immediately after.Steps to reproduce
Run via:
Expected results
Actual results
Additional information
This is with
main