dabo Commit Revision 5562 Date: 2009-12-21 07:26:04 -0800 (Mon, 21 Dec 2009) Author: Ed Trac: http://trac.dabodev.com/changeset/5562
Changed: U trunk/dabo/__init__.py Log: Added support for the pudb debugger if it is installed. Diff: Modified: trunk/dabo/__init__.py =================================================================== --- trunk/dabo/__init__.py 2009-12-19 18:19:01 UTC (rev 5561) +++ trunk/dabo/__init__.py 2009-12-21 15:26:04 UTC (rev 5562) @@ -165,7 +165,10 @@ import dEvents from dBug import logPoint -import pdb +try: + import pudb as pdb +except ImportError: + import pdb trace = pdb.set_trace from dApp import dApp _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
