Remove extra spaces in doc example.

This commit is contained in:
Andrew Svetlov 2012-03-25 11:44:59 +03:00
parent cd49d53238
commit 1d5617958f

View file

@ -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!")