Commit ff7408f4 authored by Just van Rossum's avatar Just van Rossum

Don't barf when an AppleEvent was not handled. It's ok to ignore.

parent d5093ce2
...@@ -392,8 +392,9 @@ class Application: ...@@ -392,8 +392,9 @@ class Application:
try: try:
AEProcessAppleEvent(event) AEProcessAppleEvent(event)
except: except:
print "AEProcessAppleEvent error:" pass
traceback.print_exc() #print "AEProcessAppleEvent error:"
#traceback.print_exc()
def do_unknownevent(self, event): def do_unknownevent(self, event):
if DEBUG: if DEBUG:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment