-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathdefault.py
More file actions
25 lines (15 loc) · 712 Bytes
/
default.py
File metadata and controls
25 lines (15 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-
from __future__ import division, absolute_import, print_function, unicode_literals
#################################################################################################
from jellyfin_kodi.entrypoint.default import Events
from jellyfin_kodi.helper import LazyLogger
#################################################################################################
LOG = LazyLogger(__name__)
#################################################################################################
if __name__ == "__main__":
LOG.debug("--->[ default ]")
try:
Events()
except Exception as error:
LOG.exception(error)
LOG.info("---<[ default ]")