mirror of https://github.com/morpheus65535/bazarr
16 lines
315 B
Python
16 lines
315 B
Python
|
import logging
|
||
|
import traceback
|
||
|
|
||
|
log = logging.getLogger(__name__)
|
||
|
|
||
|
__version__ = '0.7.1'
|
||
|
|
||
|
|
||
|
try:
|
||
|
from plex_activity import activity
|
||
|
|
||
|
# Global objects (using defaults)
|
||
|
Activity = activity.Activity()
|
||
|
except Exception as ex:
|
||
|
log.warn('Unable to import submodules: %s - %s', ex, traceback.format_exc())
|