Last Updated: February 25, 2016
·
1.041K
· dreispt

Set pudb as the OpenERP debugger

OpenERP provides a post-mortem pdb debug prompt if the server is started with the --debug option.

To change it to the excellent pudb debugger, just make change at the end of the server/openerp/netsvc.py file (line #323), from:

import pdb

to

import pudb as pdb