From 5e74d36f9dcbc54f59407417ee79cc128d55217c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 5 Jan 2002 03:56:54 +0000 Subject: Fix indentation error in example from the Tkinter Life Preserver. This closes SF bug #499505. --- Doc/lib/tkinter.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12