Do not trap all exceptions grrr

This commit is contained in:
Marco Pesenti Gritti 2006-10-23 17:22:26 +02:00
parent 8ae8986354
commit 1ed5450651

View File

@ -31,7 +31,7 @@ class TimelineObserver:
try: try:
method = getattr(self._observer, 'do_' + tag) method = getattr(self._observer, 'do_' + tag)
method(current_frame, n_frames) method(current_frame, n_frames)
except: except AttributeError:
pass pass
class Timeline: class Timeline: