Remove garbage '+ ' and reformat tag_delete function budy
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index c3ee52b..89255b9 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -610,7 +610,7 @@
 		apply(self.tk.call, (widgetName, self._w) + extra)
 		Widget.config(self, cnf)
 	def config(self, cnf=None):
-+ 		cnf = _cnfmerge(cnf)
+		cnf = _cnfmerge(cnf)
 		if cnf is None:
 			cnf = {}
 			for x in self.tk.split(
@@ -1076,8 +1076,7 @@
 		      (self._w, 'tag', 'configure', tagName) 
 		      + self._options(cnf))
 	def tag_delete(self, *tagNames):
-		apply(self.tk.call, (self._w, 'tag', 'delete') 
-		      + tagNames)
+		apply(self.tk.call, (self._w, 'tag', 'delete') + tagNames)
 	def tag_lower(self, tagName, belowThis=None):
 		self.tk.call(self._w, 'tag', 'lower', 
 			     tagName, belowThis)
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py
index c3ee52b..89255b9 100755
--- a/Lib/tkinter/Tkinter.py
+++ b/Lib/tkinter/Tkinter.py
@@ -610,7 +610,7 @@
 		apply(self.tk.call, (widgetName, self._w) + extra)
 		Widget.config(self, cnf)
 	def config(self, cnf=None):
-+ 		cnf = _cnfmerge(cnf)
+		cnf = _cnfmerge(cnf)
 		if cnf is None:
 			cnf = {}
 			for x in self.tk.split(
@@ -1076,8 +1076,7 @@
 		      (self._w, 'tag', 'configure', tagName) 
 		      + self._options(cnf))
 	def tag_delete(self, *tagNames):
-		apply(self.tk.call, (self._w, 'tag', 'delete') 
-		      + tagNames)
+		apply(self.tk.call, (self._w, 'tag', 'delete') + tagNames)
 	def tag_lower(self, tagName, belowThis=None):
 		self.tk.call(self._w, 'tag', 'lower', 
 			     tagName, belowThis)