From 0d4c21592deeb595c14b82ffc8d400b77b49d219 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Tue, 6 Dec 2022 12:10:36 -0500 Subject: [PATCH] Fixed typo --- python/swiftest/swiftest/simulation_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/swiftest/swiftest/simulation_class.py b/python/swiftest/swiftest/simulation_class.py index 1bcd59ac8..ea35bae91 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -2762,7 +2762,7 @@ def read_output_file(self,read_init_cond : bool = True): def read_encounter(self): if self.verbose: print("Reading encounter history file as .enc") - enc_files = self.simdir.glob("**/enc_*.nc") + enc_files = self.simdir.glob("**/encounter_*.nc") # This is needed in order to pass the param argument down to the io.process_netcdf_input function def _preprocess(ds, param):