diff options
author | Fred Drake <fdrake@acm.org> | 2002-01-05 03:56:54 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-01-05 03:56:54 (GMT) |
commit | 5e74d36f9dcbc54f59407417ee79cc128d55217c (patch) | |
tree | 52ca0f5f939cd192f73ffeb0e75d946cd0545198 /Doc/lib | |
parent | d93d68bd13400bc9e499eb9592f9deb47884b9d0 (diff) | |
download | cpython-5e74d36f9dcbc54f59407417ee79cc128d55217c.zip cpython-5e74d36f9dcbc54f59407417ee79cc128d55217c.tar.gz cpython-5e74d36f9dcbc54f59407417ee79cc128d55217c.tar.bz2 |
Fix indentation error in example from the Tkinter Life Preserver.
This closes SF bug #499505.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/tkinter.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex index 04f84e3..034771b 100644 --- a/Doc/lib/tkinter.tex +++ b/Doc/lib/tkinter.tex @@ -242,7 +242,7 @@ class Application(Frame): 3 21 def __init__(self, master=None): 22 Frame.__init__(self, master) 23 - self.pack() 24 + self.pack() 24 self.createWidgets() 25 26 app = Application() 27 |