0001808: Bug when I click on a Generate Commandline Plugin Reference

svn: r10110
This commit is contained in:
Brian Matherly 2008-02-24 22:31:06 +00:00
parent ece26c420f
commit c7d77d253d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-02-24 Brian Matherly <brian@gramps-project.org>
* src/plugins/CmdRef.py:
0001808: Bug when I click on a Generate Commandline Plugin Reference
2008-02-24 Gary Burton <gary.burton@zen.co.uk> 2008-02-24 Gary Burton <gary.burton@zen.co.uk>
* src/Selectors/_SelectPerson.py: Let return key close search field. * src/Selectors/_SelectPerson.py: Let return key close search field.
Bug #1728 Bug #1728

View File

@ -160,7 +160,7 @@ class CmdRef(Tool.Tool):
oclass = item[3](item[0], self.__db) oclass = item[3](item[0], self.__db)
elif category == CATEGORY_BOOK: elif category == CATEGORY_BOOK:
import BookReport import BookReport
oclass = BookReport.BookOptions(item[0]) oclass = BookReport.BookOptions(item[0], self.__db)
elif category: elif category:
# This is the common options case # This is the common options case
# so class is already instantiated # so class is already instantiated