Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Stone <michael@laptop.org>2010-06-26 17:59:06 (GMT)
committer Michael Stone <michael@laptop.org>2010-06-26 18:08:15 (GMT)
commit28b36f1c2a86b11450c32da383b03c7231a708cc (patch)
tree6da07524d8d07bfcf1ea35f977de01c80ef55539
parent9be9ec5ea19ab07a8a632454f87501851739fdcf (diff)
Return None rather than exceptions on missing bundle entries.
-rw-r--r--toolkit/src/sugar/bundle/bundle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/src/sugar/bundle/bundle.py b/toolkit/src/sugar/bundle/bundle.py
index 472e935..4e0aa28 100644
--- a/toolkit/src/sugar/bundle/bundle.py
+++ b/toolkit/src/sugar/bundle/bundle.py
@@ -126,7 +126,7 @@ class Bundle(object):
data = self._zip_file.read(path)
f = StringIO.StringIO(data)
except KeyError:
- raise
+ pass
return f