diff options
author | Georg Brandl <georg@python.org> | 2010-08-02 22:08:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-02 22:08:58 (GMT) |
commit | bf76ce168cc82aae2158dac7f1c0360eb757936f (patch) | |
tree | ecdb31cb4d04921486b97583d0417a0b6bd4b957 /Tools/pynche/DetailsViewer.py | |
parent | 18009342850e71775e7ebac7b6a743fbe3265c78 (diff) | |
download | cpython-bf76ce168cc82aae2158dac7f1c0360eb757936f.zip cpython-bf76ce168cc82aae2158dac7f1c0360eb757936f.tar.gz cpython-bf76ce168cc82aae2158dac7f1c0360eb757936f.tar.bz2 |
Make the Pynche tool work with Python 3.
Diffstat (limited to 'Tools/pynche/DetailsViewer.py')
-rw-r--r-- | Tools/pynche/DetailsViewer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/DetailsViewer.py b/Tools/pynche/DetailsViewer.py index 11a99a6..fdc79b7 100644 --- a/Tools/pynche/DetailsViewer.py +++ b/Tools/pynche/DetailsViewer.py @@ -52,7 +52,7 @@ Shift + Left == -25 Shift + Right == +25 """ -from Tkinter import * +from tkinter import * STOP = 'Stop' WRAP = 'Wrap Around' |