mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
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:
parent
e849bf3a99
commit
e98a827e53
1 changed files with 1 additions and 1 deletions
|
@ -978,7 +978,7 @@ class ConfigFile:
|
||||||
if len(self.libraries) > 0:
|
if len(self.libraries) > 0:
|
||||||
logger.info(f"{len(self.libraries)} Plex Library Connection{'s' if len(self.libraries) > 1 else ''} Successful")
|
logger.info(f"{len(self.libraries)} Plex Library Connection{'s' if len(self.libraries) > 1 else ''} Successful")
|
||||||
else:
|
else:
|
||||||
raise Failed("Plex Error: No Plex libraries were connected to")
|
raise Failed("Config Error: No libraries were found in config")
|
||||||
|
|
||||||
logger.separator()
|
logger.separator()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue