From: Fred Drake Date: Sat, 5 Jan 2002 03:57:19 +0000 (+0000) Subject: Fix indentation error in example from the Tkinter Life Preserver. X-Git-Tag: v2.2.1c1~251 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f7f0f87d05693e3e59ce00af91103c216c816cc;p=thirdparty%2FPython%2Fcpython.git 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 04f84e3936bd..034771bba6c9 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