summaryrefslogtreecommitdiff
path: root/Mac/Tools/IDE/Wapplication.py
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>1999-02-02 22:31:05 +0000
committerJust van Rossum <just@lettererror.com>1999-02-02 22:31:05 +0000
commitedab93939efcd4145b55bf11c3f2d2e1372cd050 (patch)
tree5c558bf7da1a07762d71113f0162d663414da495 /Mac/Tools/IDE/Wapplication.py
parentb8bf163dde525a951b8f1fbc14b9cb69f1454531 (diff)
downloadcpython-git-edab93939efcd4145b55bf11c3f2d2e1372cd050.tar.gz
re-checkin with "ISO-8859 translation" turned on.
Diffstat (limited to 'Mac/Tools/IDE/Wapplication.py')
-rw-r--r--Mac/Tools/IDE/Wapplication.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Tools/IDE/Wapplication.py b/Mac/Tools/IDE/Wapplication.py
index 8db9a1a004..10ac3f102d 100644
--- a/Mac/Tools/IDE/Wapplication.py
+++ b/Mac/Tools/IDE/Wapplication.py
@@ -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