]> granicus.if.org Git - python/commitdiff
Fix indentation error in example from the Tkinter Life Preserver.
authorFred Drake <fdrake@acm.org>
Sat, 5 Jan 2002 03:56:54 +0000 (03:56 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 5 Jan 2002 03:56:54 +0000 (03:56 +0000)
This closes SF bug #499505.

Doc/lib/tkinter.tex

index 04f84e3936bde07f29ce33a45510489ad6a6bc15..034771bba6c9595857b4ade4dd4d2cffd55ecdb1 100644 (file)
@@ -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