mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-27 03:06:10 +00:00
158a736360
Fix playback issues that was causing Kodi to hang up
5 lines
107 B
Python
5 lines
107 B
Python
"""CherryPy'd cherryd daemon runner."""
|
|
from cherrypy.daemon import run
|
|
|
|
|
|
__name__ == '__main__' and run()
|