2007-10-11 Don Allingham <don@gramps-project.org>

* src/gen/db/base.py:
	* src/GrampsDb_GrampsDbWriteXML.py:
	* src/gen/db/__init__.py: fix callback call



svn: r9140
This commit is contained in:
Don Allingham 2007-10-11 12:58:16 +00:00
parent b63befadce
commit a8b10d1092
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-10-11 Don Allingham <don@gramps-project.org>
* src/gen/db/base.py:
* src/GrampsDb_GrampsDbWriteXML.py:
* src/gen/db/__init__.py: fix callback call
2007-10-10 Duarte Loreto <happyguy_pt@hotmail.com>
* src/DateHandler/_Date_pt.py: portugese datehandler accompanying translation
* po/POTFILES.in: new file in POTFILE

View File

@ -59,7 +59,7 @@ from gen.db.dbconst import \
MEDIA_KEY,PLACE_KEY,REPOSITORY_KEY,NOTE_KEY
from gen.db.exceptions import *
from gen.db.longop import LongOpStatus
from gen.utils.longop import LongOpStatus
import gen.proxy

View File

@ -21,7 +21,7 @@
__version__ = "$Revision: $"
from base import *
from callback import *
#from callback import *
from cursor import *
from dbconst import *
from dbdir import *

View File

@ -51,7 +51,7 @@ LOG = logging.getLogger(".GrampsDb")
#
#-------------------------------------------------------------------------
from gen.lib import *
from callback import GrampsDBCallback
from gen.utils.callback import GrampsDBCallback
from iterator import CursorIterator
#-------------------------------------------------------------------------