Help regarding finding code string

I wanted to look at the code executed when the button ‘report bugs’ is clicked from help menu . The report in the info area for this buttons is bpy.context.area.ui_type = 'INFO'

Can someone please guide me to the correct file in the source location, or help in some way? (also, i thought to use chat, but it was taking forever to load :confused:)

The python operator might be printed in the info panel when you click the button (it wouldn’t surprise me if this button is entirely Python). If this doesn’t show it, try running Blender from the console with --debug-all and I think --debug-wm is debug the window manager. It will print the info in the console as you got.
Once you find out the name of the Python operator, you should be able to find it by searching through Blender’s source.

1 Like

/master/release/scripts/modules/bl_ui_utils/bug_report_url.py (interpreted from blender.chat)

/master/release/scripts/startup/bl_operators/wm.py (interpreted from D5194)