#---- lines back to normal

This commit is contained in:
prculley 2016-11-11 18:18:58 -06:00
parent d4cb0c3d7c
commit def6b3fd07

View File

@ -25,21 +25,21 @@ Base class for the Gramps databases. All database interfaces should inherit
from this class.
"""
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
#
# Python libraries
#
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
import re
import time
from operator import itemgetter
import logging
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
#
# Gramps libraries
#
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
from ..db.dbconst import DBLOGNAME
from ..const import GRAMPS_LOCALE as glocale
_ = glocale.translation.gettext
@ -50,11 +50,11 @@ from .exceptions import DbTransactionCancel
_LOG = logging.getLogger(DBLOGNAME)
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
#
# Gramps libraries
#
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
class DbReadBase: