mirror of
https://github.com/python/cpython.git
synced 2025-07-31 15:14:22 +00:00
Fix indentation error in example from the Tkinter Life Preserver.
This closes SF bug #499505.
This commit is contained in:
parent
d93d68bd13
commit
5e74d36f9d
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ class Application(Frame): 3
|
||||||
21
|
21
|
||||||
def __init__(self, master=None): 22
|
def __init__(self, master=None): 22
|
||||||
Frame.__init__(self, master) 23
|
Frame.__init__(self, master) 23
|
||||||
self.pack() 24
|
self.pack() 24
|
||||||
self.createWidgets() 25
|
self.createWidgets() 25
|
||||||
26
|
26
|
||||||
app = Application() 27
|
app = Application() 27
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue