mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 23:42:37 -07:00
Fix DepreciationWarning error for URIs with query string parameters
This commit is contained in:
parent
dab1f8ba20
commit
c287b6df77
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class HTTPHandler(object):
|
|||
Output: list
|
||||
"""
|
||||
|
||||
self.uri = uri
|
||||
self.uri = uri.encode('utf-8')
|
||||
self.request_type = request_type.upper()
|
||||
self.output_format = output_format.lower()
|
||||
self.return_type = return_type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue