Skip to content
Snippets Groups Projects
Commit d0c2d296 authored by legac's avatar legac
Browse files

Bug fixed handling a list of plugins.

parent cc575311
No related branches found
No related tags found
No related merge requests found
...@@ -55,10 +55,10 @@ class Modifier(object): ...@@ -55,10 +55,10 @@ class Modifier(object):
""" """
if 'plugins' in self.data.extjs: if 'plugins' in self.data.extjs:
self.data.extjs['plugins'].append(plugins) self.data.extjs['plugins'].extend(plugins)
else: else:
self.data.extjs['plugins'] = plugins self.data.extjs['plugins'] = list(plugins)
def configure(self, **extjs): def configure(self, **extjs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment