From 2af99d8c08d373467836d648fc8310c27bbb2b68 Mon Sep 17 00:00:00 2001 From: Zygmunt Krynicki Date: Sat, 19 Feb 2022 17:40:14 +0100 Subject: [PATCH] bitbake: persist_data: Fix typo "committed" (Bitbake rev: f9bea2b29ad8121ca82df82cdbc71f5b9d15d515) Signed-off-by: Zygmunt Krynicki Signed-off-by: Richard Purdie --- bitbake/lib/bb/persist_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 49c9a0d510..9e20a837a4 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py @@ -63,7 +63,7 @@ class SQLTable(collections.abc.MutableMapping): """ Decorator that starts a database transaction and creates a database cursor for performing queries. If no exception is thrown, the - database results are commited. If an exception occurs, the database + database results are committed. If an exception occurs, the database is rolled back. In all cases, the cursor is closed after the function ends.