Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d9c9b57

Browse files
committed
Don't barf when an AppleEvent was not handled. It's ok to ignore.
1 parent 3f4651e commit d9c9b57

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Mac/Lib/FrameWork.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,9 @@ def do_kHighLevelEvent(self, event):
392392
try:
393393
AEProcessAppleEvent(event)
394394
except:
395-
print "AEProcessAppleEvent error:"
396-
traceback.print_exc()
395+
pass
396+
#print "AEProcessAppleEvent error:"
397+
#traceback.print_exc()
397398

398399
def do_unknownevent(self, event):
399400
if DEBUG:

0 commit comments

Comments
 (0)