summaryrefslogtreecommitdiffstats
path: root/Tools/pynche
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-07-10 21:45:27 (GMT)
committerBarry Warsaw <barry@python.org>2001-07-10 21:45:27 (GMT)
commit698c14936a2f933c709ea3b412af16478ba8594d (patch)
tree352243fb77a55a0e71952e98e6070fec8b5aba75 /Tools/pynche
parent179048fc5da82c1b0f9b88954773737dc6e30692 (diff)
downloadcpython-698c14936a2f933c709ea3b412af16478ba8594d.zip
cpython-698c14936a2f933c709ea3b412af16478ba8594d.tar.gz
cpython-698c14936a2f933c709ea3b412af16478ba8594d.tar.bz2
Update a comment.
Diffstat (limited to 'Tools/pynche')
-rw-r--r--Tools/pynche/pyColorChooser.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/pynche/pyColorChooser.py b/Tools/pynche/pyColorChooser.py
index 1a920c3..56f6940 100644
--- a/Tools/pynche/pyColorChooser.py
+++ b/Tools/pynche/pyColorChooser.py
@@ -5,6 +5,8 @@ import os
import Main
import ColorDB
+
+
class Chooser:
"""Ask for a color"""
def __init__(self,
@@ -54,8 +56,8 @@ class Chooser:
# check to see if the cancel button was pushed
if self.__sb.canceled_p():
return None, None
- # try to return the color name from the database if there is an exact
- # match, otherwise use the "#rrggbb" spec. TBD: Forget about color
+ # Try to return the color name from the database if there is an exact
+ # match, otherwise use the "#rrggbb" spec. BAW: Forget about color
# aliases for now, maybe later we should return these too.
name = None
if not self.__wantspec: