mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-27 19:26:11 +00:00
158a736360
Fix playback issues that was causing Kodi to hang up
11 lines
262 B
Python
11 lines
262 B
Python
# for compatibility, expose cheroot webtest here
|
|
import warnings
|
|
|
|
from cheroot.test.webtest import ( # noqa
|
|
interface,
|
|
WebCase, cleanHeaders, shb, openURL,
|
|
ServerError, server_error,
|
|
)
|
|
|
|
|
|
warnings.warn('Use cheroot.test.webtest', DeprecationWarning)
|