From 71beccd0bfa7742e38d5be616df99ef9ac714e26 Mon Sep 17 00:00:00 2001 From: "paul.scheer" Date: Tue, 24 Sep 2024 11:11:01 +0200 Subject: [PATCH] Fix path --- simba/schedule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simba/schedule.py b/simba/schedule.py index ce6e91e..d20b546 100644 --- a/simba/schedule.py +++ b/simba/schedule.py @@ -826,7 +826,7 @@ def rotation_filter(self, args, rf_list=[]): warnings.warn(f"Path to rotation filter {args.rotation_filter_path} is invalid.") # no file, no change return - util.save_input_file(args.rotation_filter, args) + util.save_input_file(args.rotation_filter_path, args) # filter out rotations in self.rotations if args.rotation_filter_variable == "exclude": self.rotations = {k: v for k, v in self.rotations.items() if k not in rf_list}