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.
This commit is contained in:
Chaz Larson 2023-01-13 10:36:10 -06:00 committed by GitHub
parent e849bf3a99
commit e98a827e53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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