Remove nonfunctional exception handler

Pull in eos changes too :)
This commit is contained in:
Corollax
2011-01-02 17:52:20 -06:00
parent 29e678d646
commit 09aa45d15b
2 changed files with 4 additions and 5 deletions

2
eos

Submodule eos updated: 0e4c3a157b...cf4315fb7a

View File

@@ -29,10 +29,9 @@ class PropertyDisplay(ViewColumn):
ViewColumn.__init__(self, fittingView)
cAttribute = service.Attribute.getInstance()
attributeSlave = params["attributeSlave"] or params["property"]
try:
info = cAttribute.getAttributeInfo(attributeSlave)
except:
info = None
# This function can throw an exception if the database isn't sane
# We need to do a sanity check before this runs
info = cAttribute.getAttributeInfo(attributeSlave)
self.mask = 0
self.propertyName = params["property"]