]> granicus.if.org Git - python/commitdiff
Remove extra spaces in doc example.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sun, 25 Mar 2012 08:44:59 +0000 (11:44 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Sun, 25 Mar 2012 08:44:59 +0000 (11:44 +0300)
Doc/library/tkinter.rst

index 62eedff7d783265cdcf8f707f100885154411ebe..4ee8635c24efb59c2b720c541a6482c5ed0e75d7 100644 (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!")