I want to debug some script and I followed Omid Raha suggestion from this post Writing gimp plugins in python on windows- how do i debug? where is the output?.
The system work so I am able to step into my code but this error happen when the execution reaches
from gimpfu import *
The error is :
(pythonw.exe:3588):LibGimpBase-ERROR**:gimp_wire_write_msg: the wire protocol has not been initialized
I placed at the beginning of my code file:
import rpdb2; rpdb2.start_embedded_debugger("pass")
If I comment this line and run the code without debugger it runs correctly.
Thank you
Marco