0006578: referencedbyselection.py process_object calls non-existant process_note method

svn: r21801
This commit is contained in:
Tim G L Lyons 2013-03-28 22:57:44 +00:00
parent 6fe6455251
commit 423d27e5a1

View File

@ -127,7 +127,7 @@ class ReferencedBySelectionProxyDb(ProxyDbBase):
elif class_name == "Note":
obj = self.db.get_note_from_handle(handle)
if obj:
self.process_note(obj)
self.process_notes(obj)
else:
raise AttributeError("unknown class: '%s'" % class_name)