Fixed bug in StatePoint.with_summary property

This commit is contained in:
wbinventor@gmail.com 2016-01-28 12:56:52 -05:00
parent bc3f61606e
commit bd841a268f

View file

@ -451,7 +451,7 @@ class StatePoint(object):
@property
def with_summary(self):
return False if self.summary is None else True
return False if self.summary is False else True
@sparse.setter
def sparse(self, sparse):