diff --git a/pyemma/msm/estimators/implied_timescales.py b/pyemma/msm/estimators/implied_timescales.py index fc1560597..92d2d9f51 100644 --- a/pyemma/msm/estimators/implied_timescales.py +++ b/pyemma/msm/estimators/implied_timescales.py @@ -207,8 +207,8 @@ def _postprocess_results(self, models): raise RuntimeError('Estimation has failed at ALL lagtimes. Check for errors.') if bad.size > 0: self.logger.warning('Estimation has failed at lagtimes: {lags}. ' - 'Run single-lag estimation at these lags to track down the error.', - lags=self._lags[bad]) + 'Run single-lag estimation at these lags to track down the ' + 'error.'.format(lags=self._lags[bad])) models = list(np.array(models)[good]) # merge models prior evaluation