diff options
author | Guido van Rossum <guido@python.org> | 1999-07-10 13:17:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-07-10 13:17:35 (GMT) |
commit | 0d6bac67beb056edec05e3ab728ce8d026cbf70d (patch) | |
tree | d3ef67b92f4998e1bb863d8e6934a96501722ae1 /Tools/idle | |
parent | 170bdc08e192a079dad9aaaab44c100704c06eb0 (diff) | |
download | cpython-0d6bac67beb056edec05e3ab728ce8d026cbf70d.zip cpython-0d6bac67beb056edec05e3ab728ce8d026cbf70d.tar.gz cpython-0d6bac67beb056edec05e3ab728ce8d026cbf70d.tar.bz2 |
Make the color for stderr red (i.e. the standard warning/danger/stop
color) rather than green. Suggested by Sam Schulenburg.
Diffstat (limited to 'Tools/idle')
-rw-r--r-- | Tools/idle/IdlePrefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/IdlePrefs.py b/Tools/idle/IdlePrefs.py index 33803c0..e761ba0 100644 --- a/Tools/idle/IdlePrefs.py +++ b/Tools/idle/IdlePrefs.py @@ -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" |