From 5b3429fa43e5ac0b73e802f7d8c9ea4b7a721b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedek=20D=C3=A9v=C3=A9nyi?= Date: Thu, 26 Sep 2024 19:50:46 +0200 Subject: [PATCH] Update cozy/db/model_base.py --- cozy/db/model_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cozy/db/model_base.py b/cozy/db/model_base.py index 18a57600..3dd9be77 100644 --- a/cozy/db/model_base.py +++ b/cozy/db/model_base.py @@ -16,7 +16,7 @@ def get_sqlite_database(): def database_file_exists(): - return (get_data_dir(), "cozy.db").is_file() + return (get_data_dir() / "cozy.db").is_file() def __open_database():