From e98a827e53cf08030a266adf091a39313e7db4b7 Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Fri, 13 Jan 2023 10:36:10 -0600 Subject: [PATCH] Change error text This error is related to reading libraries from the config file; the existing error text implies that Plex is implicated in some way when PMM has not yet tried to connect to plex. This leads troubleshooters down a blind alley. --- modules/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config.py b/modules/config.py index c506bcd4..d0ba1f9e 100644 --- a/modules/config.py +++ b/modules/config.py @@ -978,7 +978,7 @@ class ConfigFile: if len(self.libraries) > 0: logger.info(f"{len(self.libraries)} Plex Library Connection{'s' if len(self.libraries) > 1 else ''} Successful") else: - raise Failed("Plex Error: No Plex libraries were connected to") + raise Failed("Config Error: No libraries were found in config") logger.separator()