Commit 4a358ddd authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZODB Components: Migration dialog: list_selection_name must be explicitly...

ZODB Components: Migration dialog: list_selection_name must be explicitly named for mapply() to pass it from REQUEST.
parent 43f9550d
...@@ -7069,7 +7069,7 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -7069,7 +7069,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
'migrateSourceCodeFromFilesystem') 'migrateSourceCodeFromFilesystem')
def migrateSourceCodeFromFilesystem(self, def migrateSourceCodeFromFilesystem(self,
version, version,
**kw): list_selection_name=None):
""" """
Migrate the given components from filesystem to ZODB by calling the Migrate the given components from filesystem to ZODB by calling the
appropriate importFromFilesystem according to the destination Portal appropriate importFromFilesystem according to the destination Portal
...@@ -7078,7 +7078,6 @@ Business Template is a set of definitions, such as skins, portal types and categ ...@@ -7078,7 +7078,6 @@ Business Template is a set of definitions, such as skins, portal types and categ
portal = self.getPortalObject() portal = self.getPortalObject()
component_tool = portal.portal_components component_tool = portal.portal_components
failed_import_dict = {} failed_import_dict = {}
list_selection_name = kw.get('list_selection_name')
migrated_product_module_set = set() migrated_product_module_set = set()
template_module_component_id_set = set(self.getTemplateModuleComponentIdList()) template_module_component_id_set = set(self.getTemplateModuleComponentIdList())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment