diff options
author | Barry Warsaw <barry@python.org> | 1998-10-05 21:31:37 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-05 21:31:37 (GMT) |
commit | 7c51a9a80b8a39f9b119af880bb36b14aeec5d98 (patch) | |
tree | d3f19b25cd4b0007cab360450a4a569ea7bdaefa /Tools/pynche/ListViewer.py | |
parent | c078b03d7fa9d4469ab13433a8787998f82a5a1e (diff) | |
download | cpython-7c51a9a80b8a39f9b119af880bb36b14aeec5d98.zip cpython-7c51a9a80b8a39f9b119af880bb36b14aeec5d98.tar.gz cpython-7c51a9a80b8a39f9b119af880bb36b14aeec5d98.tar.bz2 |
Title
Diffstat (limited to 'Tools/pynche/ListViewer.py')
-rw-r--r-- | Tools/pynche/ListViewer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/pynche/ListViewer.py b/Tools/pynche/ListViewer.py index 45a3ac5..d7d26fc 100644 --- a/Tools/pynche/ListViewer.py +++ b/Tools/pynche/ListViewer.py @@ -17,7 +17,6 @@ given name, without selecting the color. import sys from Tkinter import * -from pynche import __version__ import ColorDB class ListViewer: @@ -28,7 +27,7 @@ class ListViewer: # GUI root = self.__root = Toplevel(parent, class_='Pynche') root.protocol('WM_DELETE_WINDOW', self.__withdraw) - root.title('Pynche %s' % __version__) + root.title('Pynche Color List') root.iconname('Pynche Color List') root.bind('<Alt-q>', self.__quit) root.bind('<Alt-Q>', self.__quit) |