summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-01-05 03:57:19 (GMT)
committerFred Drake <fdrake@acm.org>2002-01-05 03:57:19 (GMT)
commit3f7f0f87d05693e3e59ce00af91103c216c816cc (patch)
tree257c7822229131ee4797eeb586e549f8a3919847
parent3b9bcc887f67c18fd1e2634718671887fcd67921 (diff)
downloadcpython-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.tex2
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