mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 11:44:45 +08:00
11 lines
205 B
Python
11 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)
|