(version_supported): Default to the current version.
svn: r8656
This commit is contained in:
parent
5a9535b7d1
commit
d5f5b3a602
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
2007-06-24 Alex Roitman <shura@gramps-project.org>
|
2007-06-24 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/GrampsDb/_GrampsBSDDB.py (load): Typo.
|
* src/GrampsDb/_GrampsBSDDB.py (load): Typo.
|
||||||
|
(version_supported): Default to the current version.
|
||||||
* src/DbLoader.py (read_file): Fix error reporting.
|
* src/DbLoader.py (read_file): Fix error reporting.
|
||||||
|
|
||||||
2007-06-23 Don Allingham <don@gramps-project.org>
|
2007-06-23 Don Allingham <don@gramps-project.org>
|
||||||
|
@ -380,8 +380,7 @@ class GrampsBSDDB(GrampsDbBase, UpdateCallback):
|
|||||||
self.metadata.sync()
|
self.metadata.sync()
|
||||||
|
|
||||||
def version_supported(self):
|
def version_supported(self):
|
||||||
dbversion = self.metadata.get('version', default=0)
|
dbversion = self.metadata.get('version',default=_DBVERSION)
|
||||||
print dbversion
|
|
||||||
return ((dbversion <= _DBVERSION) and (dbversion >= _MINVERSION))
|
return ((dbversion <= _DBVERSION) and (dbversion >= _MINVERSION))
|
||||||
|
|
||||||
def need_upgrade(self):
|
def need_upgrade(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user