From 8622db4d1b36712eaa105d475357ef0bfa1c8410 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 30 Mar 2015 02:32:57 -0400 Subject: [PATCH] Use wildcard method argument for Django 1.7 compatibility --- mayan/apps/sources/wizards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/sources/wizards.py b/mayan/apps/sources/wizards.py index 356e44e281..790d33de89 100644 --- a/mayan/apps/sources/wizards.py +++ b/mayan/apps/sources/wizards.py @@ -67,7 +67,7 @@ class DocumentCreateWizard(ViewPermissionCheckMixin, SessionWizardView): }) return context - def done(self, form_list): + def done(self, *args, **kwargs): query_dict = {} try: query_dict['document_type_id'] = self.get_cleaned_data_for_step('0')['document_type'].pk