mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-02-19 23:27:33 -05:00
12 lines
205 B
Python
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)
|