diff options
-rw-r--r-- | paste/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/db.py b/paste/db.py index 25e85ce..c48221f 100644 --- a/paste/db.py +++ b/paste/db.py @@ -62,7 +62,7 @@ def migrate(connection: sqlite3.Connection, migrations: list[str]) -> None: try: connection.executescript( "BEGIN IMMEDIATE TRANSACTION;\n" - f"{migration}\n" + f"{migration};\n" f"PRAGMA user_version = {i:d}" ) except: |