From d125bf5bd5667a6aaaf529a6a6febe175866d31d Mon Sep 17 00:00:00 2001 From: Adam Nelson Date: Sat, 14 Nov 2015 13:42:23 -0500 Subject: [PATCH] Fixed failing tests --- openmc/material.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/material.py b/openmc/material.py index 27e7c64ff8..6abd2789fd 100644 --- a/openmc/material.py +++ b/openmc/material.py @@ -327,7 +327,7 @@ class Material(object): # Ensureno nuclides, elements, or sab are added since these would be # incompatible with macroscopics - if (not. self._nuclides) and (not self._elements) and (not self._sab): + if (not self._nuclides) and (not self._elements) and (not self._sab): msg = 'Unable to add a Macroscopic data set to Material ID="{0}" ' \ 'with a macroscopic value "{1}" as an incompatible data ' \ 'member (i.e., nuclide, element, or S(a,b) table) ' \