diff --git a/django/contrib/formtools/wizard.py b/django/contrib/formtools/wizard.py index 97d2fb8e34..f86dbad70b 100644 --- a/django/contrib/formtools/wizard.py +++ b/django/contrib/formtools/wizard.py @@ -110,8 +110,8 @@ class FormWizard(object): next_step = current_step + 1 - if current_step == self.num_steps(): - return self.done(request, final_form_list) + if next_step == self.num_steps(): + return self.done(request, current_form_list) else: form = self.get_form(next_step) self.step = current_step = next_step