From 809da1e51926d612b78877e2eae026a93a7d1690 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 20 Jul 2023 09:18:13 +0200 Subject: [PATCH] unbound: fix typo --- src/opnsense/site-python/duckdb_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/site-python/duckdb_helper.py b/src/opnsense/site-python/duckdb_helper.py index 7ee286ed4..784c5813e 100644 --- a/src/opnsense/site-python/duckdb_helper.py +++ b/src/opnsense/site-python/duckdb_helper.py @@ -68,7 +68,7 @@ class DbConnection: self.connection.execute("SET TimeZone='UTC'") except duckdb.IOException as e: if str(e).find('database file with version number') > -1: - # XXX: this is extremely wacky, apparantly we are not able to read the current storage version + # XXX: this is extremely wacky, apparently we are not able to read the current storage version # via python so we can only watch for an exception... which is the same one for all types raise StorageVersionException(str(e))