Move _GedcomParse.py to src/plugins/lib/libgedcom.py. Remove GrampsDbUtils.

svn: r13940
This commit is contained in:
Brian Matherly
2009-12-29 19:20:16 +00:00
parent bbdf6d80cc
commit 4838650df4
10 changed files with 27 additions and 66 deletions

View File

@ -30,6 +30,8 @@ import os
from tempfile import mkstemp
from gettext import gettext as _
from glade import Glade
import libgedcom
#
# Interface to phpGedView
#
@ -315,7 +317,6 @@ class phpGedViewImporter(object):
gtk.main_iteration()
def on_next_pressed_cb(self, widget, event=None, data=None):
from GrampsDbUtils import GedcomParser
if event:
print event.type
@ -334,7 +335,7 @@ class phpGedViewImporter(object):
self.update_progressbar( _("Importing GEDCOM..."))
GedcomParser.importData(self.db, fn)
libgedcom.GedcomParser.importData(self.db, fn)
# done. bye.
self.dialog.destroy()