diff options
Diffstat (limited to 'Tools/pynche/TextViewer.py')
-rw-r--r-- | Tools/pynche/TextViewer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/pynche/TextViewer.py b/Tools/pynche/TextViewer.py index 0479d8c8dc..3b2bce4def 100644 --- a/Tools/pynche/TextViewer.py +++ b/Tools/pynche/TextViewer.py @@ -17,7 +17,6 @@ in the text window (which only has a background). import sys from Tkinter import * -from pynche import __version__ import ColorDB class TextViewer: @@ -25,7 +24,7 @@ class TextViewer: self.__sb = switchboard root = self.__root = Toplevel(parent, class_='Pynche') root.protocol('WM_DELETE_WINDOW', self.__withdraw) - root.title('Pynche %s' % __version__) + root.title('Pynche Text Window') root.iconname('Pynche Text Window') root.bind('<Alt-q>', self.__quit) root.bind('<Alt-Q>', self.__quit) |