Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-10-23 15:22:26 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-10-23 15:22:26 (GMT)
commit1ed54506516e1b2ea7e506b182f07b66978ab0ba (patch)
tree9dcdb5e9cbf82752d4de5d2a3f9bb5b17ebc0e6e /sugar/graphics
parent8ae89863542a21f4827e7ace2709f472be879653 (diff)
Do not trap all exceptions grrr
Diffstat (limited to 'sugar/graphics')
-rw-r--r--sugar/graphics/timeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/graphics/timeline.py b/sugar/graphics/timeline.py
index d8342fc..77d2428 100644
--- a/sugar/graphics/timeline.py
+++ b/sugar/graphics/timeline.py
@@ -31,7 +31,7 @@ class TimelineObserver:
try:
method = getattr(self._observer, 'do_' + tag)
method(current_frame, n_frames)
- except:
+ except AttributeError:
pass
class Timeline: