From: Andrew Svetlov Date: Sun, 25 Mar 2012 08:44:59 +0000 (+0300) Subject: Remove extra spaces in doc example. X-Git-Tag: v3.3.0a2~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d5617958fa4e3e1039c62cbe15565e642a9e428;p=python Remove extra spaces in doc example. --- diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 62eedff7d7..4ee8635c24 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!")