diff --git a/cadet/cadet.py b/cadet/cadet.py index 5a37840..614bd21 100644 --- a/cadet/cadet.py +++ b/cadet/cadet.py @@ -495,8 +495,9 @@ def run_load( Information about the simulation run. """ return_information = self.run(timeout) - print(return_information) - self.load_results() + + if return_information.return_code == 0: + self.load_results() if clear: self.clear()