1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-03-19 18:08:11 +00:00
jellyfin-kodi/context_play.py

25 lines
718 B
Python

# -*- coding: utf-8 -*-
from __future__ import division, absolute_import, print_function, unicode_literals
#################################################################################################
from jellyfin_kodi.entrypoint.context import Context
from jellyfin_kodi.helper import LazyLogger
#################################################################################################
LOG = LazyLogger(__name__)
#################################################################################################
if __name__ == "__main__":
LOG.debug("--->[ context ]")
try:
Context(True)
except Exception as error:
LOG.exception(error)
LOG.info("---<[ context ]")