Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid any further encoding conversion troubles.
diff --git a/Mac/Tools/IDE/Wapplication.py b/Mac/Tools/IDE/Wapplication.py
index 540fca0..7a9b74a 100644
--- a/Mac/Tools/IDE/Wapplication.py
+++ b/Mac/Tools/IDE/Wapplication.py
@@ -344,18 +344,18 @@
 				# XXX and that's the last thing we want here.
 				f, filename, (suff, mode, dummy) = imp.find_module(modname)
 			except ImportError:
-				raise W.AlertError, "CanÕt find file for –%s”" % modname
+				raise W.AlertError, "Can't find file for \"%s\"" % modname
 			else:
 				if not f:
-					raise W.AlertError, "CanÕt find file for –%s”" % modname
+					raise W.AlertError, "Can't find file for \"%s\"" % modname
 				f.close()
 			if suff == '.py':
 				self.openscript(filename, lineno, charoffset)
 				return
 			else:
-				raise W.AlertError, "CanÕt find file for –%s”" % modname
+				raise W.AlertError, "Can't find file for \"%s\"" % modname
 		else:
-			raise W.AlertError, "CanÕt find file •%sÕ" % filename
+			raise W.AlertError, "Can't find file \"%s\"" % filename
 		if lineno is not None:
 			editor.selectline(lineno, charoffset)
 		return editor