From 14dc63631f10eccbe6baf79a36b51bdeacd18d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Sun, 8 Jan 2023 15:53:59 +0100 Subject: [PATCH] Fixed error on daemon quit --- supysonic/daemon/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/supysonic/daemon/__init__.py b/supysonic/daemon/__init__.py index d8a67e5..2cd48ac 100644 --- a/supysonic/daemon/__init__.py +++ b/supysonic/daemon/__init__.py @@ -1,7 +1,7 @@ # This file is part of Supysonic. # Supysonic is a Python implementation of the Subsonic server API. # -# Copyright (C) 2014-2019 Alban 'spl0k' Féron +# Copyright (C) 2014-2023 Alban 'spl0k' Féron # # Distributed under terms of the GNU AGPLv3 license. @@ -61,4 +61,3 @@ def main(): init_database(config.BASE["database_uri"]) daemon = Daemon(config) daemon.run() - release_database()