diff options
Diffstat (limited to 'Lib/plat-mac/MiniAEFrame.py')
-rw-r--r-- | Lib/plat-mac/MiniAEFrame.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/plat-mac/MiniAEFrame.py b/Lib/plat-mac/MiniAEFrame.py index d6482c6..3c5ed9a 100644 --- a/Lib/plat-mac/MiniAEFrame.py +++ b/Lib/plat-mac/MiniAEFrame.py @@ -67,8 +67,7 @@ class MiniApplication: what, message, when, where, modifiers = event h, v = where if what == kHighLevelEvent: - msg = "High Level Event: %s %s" % \ - (`code(message)`, `code(h | (v<<16))`) + msg = "High Level Event: %r %r" % (code(message), code(h | (v<<16))) try: AE.AEProcessAppleEvent(event) except AE.Error, err: |