You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/plex_activity/__init__.py

16 lines
315 B

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())