Replace backticks with repr() or "%r"
From SF patch #852334.
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 @@
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 @@
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 @@
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