diff options
Diffstat (limited to 'Mac/Tools/IDE/PythonIDEMain.py')
-rw-r--r-- | Mac/Tools/IDE/PythonIDEMain.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 29e9bef..111a0b0 100644 --- a/Mac/Tools/IDE/PythonIDEMain.py +++ b/Mac/Tools/IDE/PythonIDEMain.py @@ -394,7 +394,7 @@ class PythonIDE(Wapplication.Application): if arg[0] == -50: W.Message("Developer documentation not installed") else: - W.Message("AppleHelp Error: %s" % `arg`) + W.Message("AppleHelp Error: %r" % (arg,)) def domenu_lookuppython(self, *args): from Carbon import AH @@ -404,7 +404,7 @@ class PythonIDE(Wapplication.Application): try: AH.AHSearch("Python Documentation", searchstring) except AH.Error, arg: - W.Message("AppleHelp Error: %s" % `arg`) + W.Message("AppleHelp Error: %r" % (arg,)) def domenu_lookupcarbon(self, *args): from Carbon import AH @@ -414,7 +414,7 @@ class PythonIDE(Wapplication.Application): try: AH.AHSearch("Carbon", searchstring) except AH.Error, arg: - W.Message("AppleHelp Error: %s" % `arg`) + W.Message("AppleHelp Error: %r" % (arg,)) def _getsearchstring(self): # First we get the frontmost window |