From bd841a268f86117da6e9e370ef99088f9ea416d6 Mon Sep 17 00:00:00 2001 From: "wbinventor@gmail.com" Date: Thu, 28 Jan 2016 12:56:52 -0500 Subject: [PATCH] Fixed bug in StatePoint.with_summary property --- openmc/statepoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/statepoint.py b/openmc/statepoint.py index 49ac43590e..4c6f956a49 100644 --- a/openmc/statepoint.py +++ b/openmc/statepoint.py @@ -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):