Exception handling fixups

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2010-04-09 14:01:11 -07:00
committed by Richard Purdie
parent cf58d41af8
commit cbc8140c77

View File

@@ -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 )