From c275933aae2e3fc035a4cdb9e9eee98755479851 Mon Sep 17 00:00:00 2001 From: Chris Keckler Date: Thu, 16 Mar 2023 21:24:53 -0700 Subject: [PATCH] Fix small typo in error message --- 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 625094cce3..ec35ab49f4 100644 --- a/openmc/model/model.py +++ b/openmc/model/model.py @@ -636,7 +636,7 @@ class Model: if len(self.settings.volume_calculations) == 0: # Then there is no volume calculation specified - raise ValueError("The Settings.volume_calculation attribute must" + raise ValueError("The Settings.volume_calculations attribute must" " be specified before executing this method!") with _change_directory(Path(cwd)):