From: Fred Drake Date: Sat, 5 Jan 2002 03:56:54 +0000 (+0000) Subject: Fix indentation error in example from the Tkinter Life Preserver. X-Git-Tag: v2.3c1~6886 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e74d36f9dcbc54f59407417ee79cc128d55217c;p=python Fix indentation error in example from the Tkinter Life Preserver. This closes SF bug #499505. --- diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex index 04f84e3936..034771bba6 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