diff --git a/pyfpdb/fpdb_db.py b/pyfpdb/fpdb_db.py index c52a2e56..a0f6ca92 100644 --- a/pyfpdb/fpdb_db.py +++ b/pyfpdb/fpdb_db.py @@ -205,7 +205,7 @@ class fpdb_db: print msg raise fpdb_simple.FpdbError(msg) elif backend==fpdb_db.SQLITE: - logging.info("Connecting to SQLite:(%s)") + logging.info("Connecting to SQLite:%(database)s" % {'database':database}) import sqlite3 self.db = sqlite3.connect(database,detect_types=sqlite3.PARSE_DECLTYPES) sqlite3.register_converter("bool", lambda x: bool(int(x)))