diff --git a/src/plugins/export/export.gpr.py b/src/plugins/export/export.gpr.py index 013737d87..980e181c0 100644 --- a/src/plugins/export/export.gpr.py +++ b/src/plugins/export/export.gpr.py @@ -138,25 +138,6 @@ plg.export_options = 'WriterOptionBox' plg.export_options_title = ('Gramps XML export options') plg.extension = "gramps" -#------------------------------------------------------------------------ -# -# SQLITE database -# -#------------------------------------------------------------------------ - -plg = newplugin() -plg.id = 'ex_sqlite' -plg.name = _('SQLite Export') -plg.description = _('SQLite is a common local database format') -plg.version = '1.0' -plg.status = UNSTABLE -plg.fname = 'ExportSql.py' -plg.ptype = EXPORT -plg.export_function = 'exportData' -plg.export_options = 'WriterOptionBox' -plg.export_options_title = ('SQLite options') -plg.extension = "sql" - #------------------------------------------------------------------------ # # vCalendar diff --git a/src/plugins/import/import.gpr.py b/src/plugins/import/import.gpr.py index 6a1196d10..b5c4a91f4 100644 --- a/src/plugins/import/import.gpr.py +++ b/src/plugins/import/import.gpr.py @@ -146,23 +146,6 @@ plg.ptype = IMPORT plg.import_function = '_importData' plg.extension = "def" -#------------------------------------------------------------------------ -# -# SQLite Import -# -#------------------------------------------------------------------------ - -plg = newplugin() -plg.id = 'im_sqlite' -plg.name = _('SQLite Import') -plg.description = _('SQLite is a common local database format') -plg.version = '1.0' -plg.status = UNSTABLE -plg.fname = 'ImportSql.py' -plg.ptype = IMPORT -plg.import_function = 'importData' -plg.extension = "sql" - #------------------------------------------------------------------------ # # vCard