* src/GrampsBSDDB.py (upgrade_7): Enforce str for the default handle.
svn: r4726
This commit is contained in:
parent
5fda37f10f
commit
2c6f08b9e3
@ -27,6 +27,8 @@
|
||||
* src/SelectChild.py: Fix constants.
|
||||
* src/WriteXML.py: Fix constants.
|
||||
|
||||
* src/GrampsBSDDB.py (upgrade_7): Enforce str for the default handle.
|
||||
|
||||
2005-05-27 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||
* src/EditRepository.py: polish Repository Ref UI
|
||||
* src/RelLib.py: merge minor changes from HEAD
|
||||
|
@ -825,6 +825,9 @@ class GrampsBSDDB(GrampsDbBase):
|
||||
|
||||
def upgrade_7(self):
|
||||
print "Upgrading to DB version 7"
|
||||
# First, make sure the stored default person handle is str, not unicode
|
||||
handle = self.metadata['default']
|
||||
self.metadata['default'] = str(handle)
|
||||
trans = Transaction("",self)
|
||||
trans.set_batch(True)
|
||||
# Change every source to have reporef_list
|
||||
|
Loading…
Reference in New Issue
Block a user