re-checkin with "ISO-8859 translation" turned on.

This commit is contained in:
Just van Rossum 1999-02-02 22:31:05 +00:00
parent b8bf163dde
commit edab93939e
12 changed files with 58 additions and 58 deletions

View file

@ -323,18 +323,18 @@ class Application(FrameWork.Application):
# 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