diff --git a/ChangeLog b/ChangeLog index d76e0224f..a707ffde2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-01-21 Benny Malengier + * src/plugins/Check.py: bug (buglist) wrong method call + 2008-01-20 Brian Matherly * src/docgen/SvgDrawDoc.py: 0001321: Ancester Graph SVG Export dosn't show text diff --git a/src/plugins/Check.py b/src/plugins/Check.py index dc43ce30c..36446d7d1 100644 --- a/src/plugins/Check.py +++ b/src/plugins/Check.py @@ -1002,7 +1002,7 @@ class CheckIntegrity: item[1] not in known_handles ] if bad_handles: obj.remove_source_references(bad_handles) - self.db.commit_object(obj,self.trans) + self.db.commit_media_object(obj,self.trans) new_bad_handles = [handle for handle in bad_handles if handle not in self.invalid_source_references] self.invalid_source_references += new_bad_handles @@ -1205,7 +1205,7 @@ class CheckIntegrity: for bad_handle in bad_handles: obj.remove_note(bad_handle) if bad_handles: - self.db.commit_object(obj,self.trans) + self.db.commit_media_object(obj,self.trans) new_bad_handles = [handle for handle in bad_handles if handle not in self.invalid_note_references] self.invalid_note_references += new_bad_handles