fix parameters
svn: r6092
This commit is contained in:
parent
b20db2bf8c
commit
0acfe774ff
@ -1,4 +1,6 @@
|
|||||||
2006-03-06 Don Allingham <don@gramps-project.org>
|
2006-03-06 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/GrampsDb/_GrampsDbBase.py: handle the default argument of
|
||||||
|
no_magic
|
||||||
* src/Editors/_EditFamily.py: handle the fact that family
|
* src/Editors/_EditFamily.py: handle the fact that family
|
||||||
information is not a simple list.
|
information is not a simple list.
|
||||||
|
|
||||||
|
@ -1162,7 +1162,7 @@ class GrampsDbBase(GrampsDBCallback):
|
|||||||
"""
|
"""
|
||||||
self.rprefix = self._validated_id_prefix(val,"R")
|
self.rprefix = self._validated_id_prefix(val,"R")
|
||||||
|
|
||||||
def transaction_begin(self,msg="",batch=False):
|
def transaction_begin(self,msg="",batch=False, match=False, no_magic=False):
|
||||||
"""
|
"""
|
||||||
Creates a new Transaction tied to the current UNDO database. The
|
Creates a new Transaction tied to the current UNDO database. The
|
||||||
transaction has no effect until it is committed using the
|
transaction has no effect until it is committed using the
|
||||||
|
@ -603,7 +603,7 @@ class GrampsParser:
|
|||||||
self.p.EndElementHandler = self.endElement
|
self.p.EndElementHandler = self.endElement
|
||||||
self.p.CharacterDataHandler = self.characters
|
self.p.CharacterDataHandler = self.characters
|
||||||
self.p.ParseFile(file)
|
self.p.ParseFile(file)
|
||||||
|
|
||||||
self.db.set_researcher(self.owner)
|
self.db.set_researcher(self.owner)
|
||||||
if self.home != None:
|
if self.home != None:
|
||||||
person = self.db.find_person_from_handle(self.home,self.trans)
|
person = self.db.find_person_from_handle(self.home,self.trans)
|
||||||
|
Loading…
Reference in New Issue
Block a user