summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/plat-mac/aetypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/aetypes.py b/Lib/plat-mac/aetypes.py
index 5e3555e..a5459c7 100644
--- a/Lib/plat-mac/aetypes.py
+++ b/Lib/plat-mac/aetypes.py
@@ -131,7 +131,7 @@ class Keyword:
self.keyword = "%-4.4s" % str(keyword)
def __repr__(self):
- return "Keyword(%r)" % `self.keyword`
+ return "Keyword(%r)" % repr(self.keyword)
def __str__(self):
return string.strip(self.keyword)