mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-15 01:32:57 -07:00
Update cherrypy-18.6.1
This commit is contained in:
parent
b3ae6bd695
commit
ebffd124f6
57 changed files with 1269 additions and 1509 deletions
|
@ -61,8 +61,6 @@ import os
|
|||
import re
|
||||
import sys
|
||||
|
||||
import six
|
||||
|
||||
from more_itertools import always_iterable
|
||||
|
||||
import cherrypy
|
||||
|
@ -197,7 +195,7 @@ def handler(req):
|
|||
path = req.uri
|
||||
qs = req.args or ''
|
||||
reqproto = req.protocol
|
||||
headers = list(six.iteritems(req.headers_in))
|
||||
headers = list(req.headers_in.copy().items())
|
||||
rfile = _ReadOnlyRequest(req)
|
||||
prev = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue