Fixing defaultdict optimization so that it works

svn: r14022
This commit is contained in:
Doug Blank 2010-01-10 17:20:08 +00:00
parent 9b7d972c99
commit 141100fdbf

View File

@ -187,7 +187,7 @@ class PluginDialog(ManagedWindow.ManagedWindow):
self.store.clear()
# build the tree items and group together based on the category name
item_hash = defaultdict()
item_hash = defaultdict(list)
for plugin in reg_list:
if not plugin.supported:
category = _UNSUPPORTED