From ef8557b50a8b68147c7265785ecf36ecce03507c Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 9 Oct 2021 16:51:18 -0700 Subject: [PATCH] Keep docker mount log message when check is disabled --- plexpy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/__init__.py b/plexpy/__init__.py index fcb7dd9c..4551fdfd 100644 --- a/plexpy/__init__.py +++ b/plexpy/__init__.py @@ -252,7 +252,7 @@ def initialize(config_file): DB_FILE )) - if CONFIG.CHECK_DOCKER_MOUNT and DOCKER and not DOCKER_MOUNT: + if DOCKER and not DOCKER_MOUNT: logger.warn( "Docker /config volume not mounted. Using a Docker volume instead. " "All data may be cleared when the container is recreated or updated."