diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 14:01:11 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:33 +0100 |
commit | cbc8140c77d927f0b15234e46f4c61d1bb5376ef (patch) | |
tree | ab178d619a606e3650c236ffc5b45cfbc9296d00 | |
parent | cf58d41af881e64cef0c3cba2eaabf0ea71cc97b (diff) | |
download | openembedded-core-cbc8140c77d927f0b15234e46f4c61d1bb5376ef.tar.gz openembedded-core-cbc8140c77d927f0b15234e46f4c61d1bb5376ef.tar.bz2 openembedded-core-cbc8140c77d927f0b15234e46f4c61d1bb5376ef.zip |
Exception handling fixups
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 7f46b4abb9..2edeec064e 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py @@ -126,7 +126,7 @@ class DataSmart: name = var[:-l] try: self.renameVar(var, name) - except: + except Exception: bb.msg.note(1, bb.msg.domain.Data, "Untracked delVar") # now on to the appends and prepends @@ -203,7 +203,7 @@ class DataSmart: # pay the cookie monster try: self._special_values[keyword].add( base ) - except: + except KeyError: self._special_values[keyword] = set() self._special_values[keyword].add( base ) |