Fix some residual bugs from the implementation of the new plugin manager.

svn: r13430
This commit is contained in:
Brian Matherly 2009-10-27 02:35:42 +00:00
parent fa10edbfd1
commit e03f293238
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class _DrawFormatComboBox(gtk.ComboBox):
gtk.ComboBox.__init__(self) gtk.ComboBox.__init__(self)
pmgr = PluginManager.get_instance() pmgr = GuiPluginManager.get_instance()
self.__drawdoc_plugins = [] self.__drawdoc_plugins = []
for plugin in pmgr.get_docgen_plugins(): for plugin in pmgr.get_docgen_plugins():
if plugin.get_draw_support(): if plugin.get_draw_support():

View File

@ -53,7 +53,7 @@ plg.name = _("Birthday and Anniversary Report")
plg.description = _("Produces a report of birthdays and anniversaries") plg.description = _("Produces a report of birthdays and anniversaries")
plg.version = '1.0' plg.version = '1.0'
plg.status = STABLE plg.status = STABLE
plg.fname = 'AncestorReport.py' plg.fname = 'BirthdayReport.py'
plg.ptype = REPORT plg.ptype = REPORT
plg.authors = ["Douglas S. Blank"] plg.authors = ["Douglas S. Blank"]
plg.authors_email = ["dblank@cs.brynmawr.edu"] plg.authors_email = ["dblank@cs.brynmawr.edu"]