Skip to content

Commit

Permalink
Fix another silly exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusty Phillips committed Jan 25, 2010
1 parent 2d9f4a2 commit 117401d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions psyclone/ioloop.py
Expand Up @@ -257,9 +257,7 @@ def _wake(self):
def _run_callback(self, callback):
try:
callback()
except (KeyboardInterrupt, SystemExit):
raise
except:
except Exception:
logging.error("Exception in callback %r", callback, exc_info=True)

def _read_waker(self, fd, events):
Expand Down

0 comments on commit 117401d

Please sign in to comment.