Merge "Fix package import fails due to QueryDict immutable"

This commit is contained in:
Jenkins 2017-08-05 19:03:32 +00:00 committed by Gerrit Code Review
commit 88a561a7a6
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ class ImportPackageWizard(horizon_views.PageTitleMixin, views.ModalFormMixin,
LOG.info('Adding {0} application to the'
' latest apps list'.format(app_id))
step_data = self.get_form_step_data(form)
step_data = self.get_form_step_data(form).copy()
if self.steps.current == 'upload':
import_type = form.cleaned_data['import_type']
data = {}