mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-21 20:13:05 +00:00
more requirements error info
This commit is contained in:
parent
8e52a84293
commit
73abdc8124
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ try:
|
|||
from plexapi import server
|
||||
from plexapi.exceptions import NotFound
|
||||
from plexapi.video import Show, Season
|
||||
except (ModuleNotFoundError, ImportError):
|
||||
print("Requirements Error: Requirements are not installed")
|
||||
except (ModuleNotFoundError, ImportError) as ie:
|
||||
print(f"Requirements Error: Requirements are not installed ({ie})")
|
||||
sys.exit(0)
|
||||
|
||||
system_versions = {
|
||||
|
|
Loading…
Reference in a new issue