Clean lint problems

This commit is contained in:
2018-07-21 15:55:07 +02:00
parent b18c4dcd18
commit f426b616fd
8 changed files with 30 additions and 47 deletions

View File

@@ -38,7 +38,7 @@ def strstr(haystack, needle):
def create_connection(db_filename):
db_path = get_file_path(db_filename)
logging.debug("Try to connect to {}".format(db_path))
logging.debug("Try to connect to %s", db_path)
try:
conn = sqlite3.connect(db_path)
return conn