diff options
author | Fred Drake <fdrake@acm.org> | 2002-01-05 03:57:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-01-05 03:57:19 (GMT) |
commit | 3f7f0f87d05693e3e59ce00af91103c216c816cc (patch) | |
tree | 257c7822229131ee4797eeb586e549f8a3919847 | |
parent | 3b9bcc887f67c18fd1e2634718671887fcd67921 (diff) | |
download | cpython-3f7f0f87d05693e3e59ce00af91103c216c816cc.zip cpython-3f7f0f87d05693e3e59ce00af91103c216c816cc.tar.gz cpython-3f7f0f87d05693e3e59ce00af91103c216c816cc.tar.bz2 |
Fix indentation error in example from the Tkinter Life Preserver.
This closes SF bug #499505.
-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 |