From 5cd52a40485f1ebf160285409db46ba2f0b74152 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 7 Nov 2018 15:23:40 -0600 Subject: [PATCH] Fix variable name. --- openmc/model/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/model/model.py b/openmc/model/model.py index 47c43fb83..8583da27a 100644 --- a/openmc/model/model.py +++ b/openmc/model/model.py @@ -181,7 +181,7 @@ class Model(object): """Export model to XML files.""" self.settings.export_to_xml() - if not settings.dagmc: + if not self.settings.dagmc: self.geometry.export_to_xml() # If a materials collection was specified, export it. Otherwise, look