Commit 6265ae29 authored by Julien Muchembled's avatar Julien Muchembled

Use IPython user preferences to set the color scheme.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24772 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 207d385a
......@@ -201,7 +201,7 @@ class DebugTestResult:
# try ipython if available
import IPython
IPython.Shell.IPShell(argv=[])
p = IPython.Debugger.Pdb(color_scheme='Linux')
p = IPython.Debugger.Pdb(color_scheme=__IPYTHON__.rc.colors)
p.reset()
while tb.tb_next is not None:
tb = tb.tb_next
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment