diff --git a/sktime/forecasting/compose/_fallback.py b/sktime/forecasting/compose/_fallback.py index 5e67aef81ee..a6e75b6ffd3 100644 --- a/sktime/forecasting/compose/_fallback.py +++ b/sktime/forecasting/compose/_fallback.py @@ -209,7 +209,7 @@ def _predict(self, fh, X=None): return self.current_forecaster_.predict(fh, X) except Exception as e: self.exceptions_raised_[self.first_nonfailing_forecaster_index_] = { - "failed_at_step": "fit", + "failed_at_step": "predict", "exception": e, "forecaster_name": self.current_name_, }