aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/patches/03-dissable-backgroud-highlighting.patch
blob: bb9b4924d02a20868f33bed54168cd52fa3a7470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- contrib/python/ipython/py3/IPython/core/ultratb.py	(index)
+++ contrib/python/ipython/py3/IPython/core/ultratb.py	(working tree)
@@ -842,7 +842,7 @@ class VerboseTB(TBTools):
         before = context - after
         if self.has_colors:
             style = get_style_by_name("default")
-            style = stack_data.style_with_executing_node(style, "bg:ansiyellow")
+            style = stack_data.style_with_executing_node(style, "")
             formatter = Terminal256Formatter(style=style)
         else:
             formatter = None