Changeset 3240
- Timestamp:
- 07/11/07 22:13:33 (1 year ago)
- Files:
-
- trunk/dabo/lib/eventMixin.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/lib/eventMixin.py
r3199 r3240 90 90 uiCallAfterFunc(bindingFunction, event) 91 91 else: 92 bindingFunction(event) 93 # Previously, we were printing any raised exception and then 94 # letting it go, which just seems wrong. Commented out: 95 92 96 # Wrap the call so that if an exception is raised in one 93 97 # handler, the rest of the handlers still get a whack at … … 95 99 # the real event loop in the ui lib. This is only necessary 96 100 # because we aren't using a uiCallAfterFunc(). 97 try:98 bindingFunction(event)99 except:100 traceback.print_exc()101 #try: 102 # bindingFunction(event) 103 #except: 104 # traceback.print_exc() 101 105 if not event.Continue: 102 106 # The event handler set the Continue flag to False, specifying that
