Changing the way of how formatted Notes are stored:
remove 'Markup' optional parameter from gen.lib.note.Note.get() method. svn: r10288
This commit is contained in:
@@ -915,8 +915,8 @@ class MergePeople:
|
||||
print "Deleted empty family %s" % family_handle
|
||||
|
||||
def merge_notes(self, note1, note2):
|
||||
t1 = note1.get(markup=True)
|
||||
t2 = note2.get(markup=True)
|
||||
t1 = note1.get()
|
||||
t2 = note2.get()
|
||||
if not t2:
|
||||
return note1
|
||||
elif not t1:
|
||||
|
||||
Reference in New Issue
Block a user