Files
Sub-Zero.bundle/Contents/Libraries/Shared/plex/__init__.py
T
2015-10-20 14:22:42 +02:00

12 lines
205 B
Python

import logging
log = logging.getLogger(__name__)
__version__ = '0.7.0'
try:
from plex.client import Plex
except Exception as ex:
log.warn('Unable to import submodules - %s', ex, exc_info=True)