Make the color for stderr red (i.e. the standard warning/danger/stop

color) rather than green.  Suggested by Sam Schulenburg.
This commit is contained in:
Guido van Rossum 1999-07-10 13:17:35 +00:00
parent 170bdc08e1
commit 0d6bac67be

View file

@ -13,7 +13,7 @@ class ColorPrefs:
CHit = "#ffffff", "#000000"
CStdIn = None, None # None, "yellow"
CStdOut = "blue", None
CStdErr = "#007700", None
CStdErr = "red", None
CConsole = "#770000", None
CError = None, "#ff7777"
CCursor = None, "black"