Skip to content

Commit

Permalink
Merge pull request statsmodels#1363 from jseabold/fix-typo
Browse files Browse the repository at this point in the history
BUG: Fix typo.
  • Loading branch information
jseabold committed Feb 6, 2014
2 parents c0690b6 + 60917d4 commit e99d089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/tsa/arima_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def fit(self, order=None, start_params=None, trend='c', method = "css-mle",
normalized_cov_params = None #TODO: fix this
armafit = ARMAResults(self, params, normalized_cov_params)
armafit.mle_retvals = mlefit.mle_retvals
armafit.mle_setting = mlefit.mle_settings
armafit.mle_settings = mlefit.mle_settings
armafit.mlefit = mlefit
return ARMAResultsWrapper(armafit)

Expand Down

0 comments on commit e99d089

Please sign in to comment.