commit | e45be28be665a04aef0d0a7444ba27fde2dd2d5f | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Thu Aug 23 00:01:55 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Thu Aug 23 00:01:55 2007 +0000 |
tree | 12b6261b32a5913ed104704734e7b7a15cd74e69 | |
parent | cfe02a498b107a6436003e2bf7a48aefe4e3d59f [diff] [blame] |
Convert raise statements in Lib/plat-{mac,os2emx}.
diff --git a/Lib/plat-mac/MiniAEFrame.py b/Lib/plat-mac/MiniAEFrame.py index 7ae3351..8e551a5 100644 --- a/Lib/plat-mac/MiniAEFrame.py +++ b/Lib/plat-mac/MiniAEFrame.py
@@ -79,7 +79,7 @@ c = chr(message & charCodeMask) if modifiers & cmdKey: if c == '.': - raise KeyboardInterrupt, "Command-period" + raise KeyboardInterrupt("Command-period") if c == 'q': if hasattr(MacOS, 'OutputSeen'): MacOS.OutputSeen()