diff options
author | Barry Warsaw <barry@python.org> | 1998-10-06 19:48:35 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-06 19:48:35 (GMT) |
commit | 45c8d3421693e709530c6e95c5ae7a4e82310a71 (patch) | |
tree | 44c45ec8bde83500794bb11cbf05cd232d1b15f1 /Tools/pynche/TextViewer.py | |
parent | d5bcf9a343b146a1b06731064c792615d97e45c1 (diff) | |
download | cpython-45c8d3421693e709530c6e95c5ae7a4e82310a71.zip cpython-45c8d3421693e709530c6e95c5ae7a4e82310a71.tar.gz cpython-45c8d3421693e709530c6e95c5ae7a4e82310a71.tar.bz2 |
Better quitting
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 15a67dd..316bd15 100644 --- a/Tools/pynche/TextViewer.py +++ b/Tools/pynche/TextViewer.py @@ -15,7 +15,6 @@ button and drag it through some text. The Insertion is the insertion cursor in the text window (which only has a background). """ -import sys from Tkinter import * import ColorDB @@ -89,7 +88,7 @@ textual displays.''') self.__toggletrack() def __quit(self, event=None): - sys.exit(0) + self.__root.quit() def __withdraw(self, event=None): self.__root.withdraw() |