diff options
-rw-r--r-- | Doc/lib/tkinter.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex index 04f84e3..034771b 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 |