diff --git a/ChangeLog b/ChangeLog index 5d62f370b..b450bebbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ 2006-10-07 Alex Roitman + * src/plugins/BookReport.py (BookList.parse): Catch ValueError + exception (coming from urllib2). * src/LdsUtils.py (temples): Correct code for San Antonio. * src/GrampsDb/_WriteGedcom.py (GedcomWriterOptionBox.get_option_box): Add custom filters to the diff --git a/src/plugins/BookReport.py b/src/plugins/BookReport.py index c4357c806..3134ae8f9 100644 --- a/src/plugins/BookReport.py +++ b/src/plugins/BookReport.py @@ -401,7 +401,7 @@ class BookList: p = make_parser() p.setContentHandler(BookParser(self)) p.parse(self.file) - except (IOError,OSError,SAXParseException): + except (IOError,OSError,ValueError,SAXParseException): pass