Hello Community,
I created a new Sublime Package with the following code:
import subprocess
subprocess.call(['echo', 'hello world'])
In ST console, I get the following output:
reloading plugin User.rubbish
If I run this code in a normal Python shell, I get the following output:
hello world
[Finished in 29ms]
I would expect to have the following output in ST console:
reloading plugin User.rubbish
hello world
Thanks in advance for any help.