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))