mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-22 04:39:26 +00:00
- dont't pass unicode hostname to cherrypy (see cherrypy-issue #1285, https://bitbucket.org/cherrypy/cherrypy/issue/1285/n-must-be-a-native-str-got-unicode)
7 lines
230 B
Python
7 lines
230 B
Python
import warnings
|
|
warnings.warn('cherrypy.lib.http has been deprecated and will be removed '
|
|
'in CherryPy 3.3 use cherrypy.lib.httputil instead.',
|
|
DeprecationWarning)
|
|
|
|
from cherrypy.lib.httputil import *
|