Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Message user about library not existing #79

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plex_dupefinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def get_section_type(plex_section_name):
plex_section_type = plex.library.section(plex_section_name).type
except Exception:
log.exception("Exception occurred while trying to lookup the section type for Library: %s", plex_section_name)
print(f'Error accessing library "{plex_section_name}" - Does this library specified in the config exist on the Plex server?')
exit(1)
return 'episode' if plex_section_type == 'show' else 'movie'

Expand Down