Fixing defaultdict optimization so that it works
svn: r14022
This commit is contained in:
parent
9b7d972c99
commit
141100fdbf
@ -187,7 +187,7 @@ class PluginDialog(ManagedWindow.ManagedWindow):
|
|||||||
self.store.clear()
|
self.store.clear()
|
||||||
|
|
||||||
# build the tree items and group together based on the category name
|
# build the tree items and group together based on the category name
|
||||||
item_hash = defaultdict()
|
item_hash = defaultdict(list)
|
||||||
for plugin in reg_list:
|
for plugin in reg_list:
|
||||||
if not plugin.supported:
|
if not plugin.supported:
|
||||||
category = _UNSUPPORTED
|
category = _UNSUPPORTED
|
||||||
|
Loading…
Reference in New Issue
Block a user