2007-12-27 Douglas S. Blank <dblank@cs.brynmawr.edu>

* src/PluginUtils/_Options.py: Bug #1486, type error on option read



svn: r9605
This commit is contained in:
Doug Blank 2007-12-28 02:20:39 +00:00
parent 935f32acff
commit c3bda4cb4c
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
2007-12-27 Douglas S. Blank <dblank@cs.brynmawr.edu>
* src/PluginUtils/_Options.py: Bug #1486, type error on option read
2007-12-27 Brian Matherly <brian@gramps-project.org> 2007-12-27 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_GraphvizReportDialog.py: * src/ReportBase/_GraphvizReportDialog.py:
* src/plugins/GVRelGraph.py: fix thumbnail images and HTML output. * src/plugins/GVRelGraph.py: fix thumbnail images and HTML output.

View File

@ -347,6 +347,8 @@ class OptionHandler:
self.options_dict[option_name] = converter(options[option_name]) self.options_dict[option_name] = converter(options[option_name])
except ValueError: except ValueError:
pass pass
except TypeError:
pass
for option_name in bad_opts: for option_name in bad_opts:
options.pop(option_name) options.pop(option_name)