Often you can’t get a simple print statement to output to Mobu’s output window when using PySide. You will only see all the output if you close down a UI and reload it. Easiest way to get around this is with flushing the output via the pythonidelib module. It’s as simple as:
1 2 3 |
import pythonidelib pythonidelib.FlushOutput() |