diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-25 08:44:59 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-25 08:44:59 (GMT) |
commit | 1d5617958fa4e3e1039c62cbe15565e642a9e428 (patch) | |
tree | 0e98079f8bd0888c49f1c99a1da400961fa41fdd /Doc/library/tkinter.rst | |
parent | cd49d5323833ff15cc10a918bdb2afcb02e500a4 (diff) | |
download | cpython-1d5617958fa4e3e1039c62cbe15565e642a9e428.zip cpython-1d5617958fa4e3e1039c62cbe15565e642a9e428.tar.gz cpython-1d5617958fa4e3e1039c62cbe15565e642a9e428.tar.bz2 |
Remove extra spaces in doc example.
Diffstat (limited to 'Doc/library/tkinter.rst')
-rw-r--r-- | Doc/library/tkinter.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 62eedff..4ee8635 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -193,9 +193,9 @@ A Simple Hello World Program self.hi_there["command"] = self.say_hi self.hi_there.pack(side="top") - self.QUIT = tk.Button(self, text = "QUIT", fg = "red", - command = root.destroy) - self.QUIT.pack(side = "bottom") + self.QUIT = tk.Button(self, text="QUIT", fg="red", + command=root.destroy) + self.QUIT.pack(side="bottom") def say_hi(self): print("hi there, everyone!") |