diff --git a/Lib/plat-mac/aetypes.py b/Lib/plat-mac/aetypes.py index 5e3555e3142..a5459c750b1 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)