Fix indentation error in example from the Tkinter Life Preserver.

This closes SF bug #499505.
This commit is contained in:
Fred Drake 2002-01-05 03:56:54 +00:00
parent d93d68bd13
commit 5e74d36f9d
1 changed files with 1 additions and 1 deletions

View 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