diff --git a/openmc/deplete/operator.py b/openmc/deplete/operator.py index fce0670e51..7e3b34d0c1 100644 --- a/openmc/deplete/operator.py +++ b/openmc/deplete/operator.py @@ -642,7 +642,7 @@ class Operator(TransportOperator): if mfile.exists(): tree = ET.parse(str(mfile)) xs = tree.find('cross_sections') - if xs is not None: + if xs is not None and self.materials.cross_sections is None: self.materials.cross_sections = xs.text self.materials.export_to_xml()