Skip to content

Commit

Permalink
Merge pull request #494 from LefterisJP/patch-1
Browse files Browse the repository at this point in the history
Fix typo in sqlite/drivers.py debug log
  • Loading branch information
jamadden committed Jun 7, 2022
2 parents f3825ba + 3ad879e commit 51c14ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relstorage/adapters/sqlite/drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def close(self):
PRAGMA optimize;
""")
except sqlite3.OperationalError:
logger.debug("Failed to optimize databas, probably in use", exc_info=True)
logger.debug("Failed to optimize database, probably in use", exc_info=True)
except sqlite3.DatabaseError:
# It's possible the file was removed.
logger.exception("Failed to optimize database; was it removed?")
Expand Down

0 comments on commit 51c14ca

Please sign in to comment.