Commit 9cfa816
committed
Fix deprecation warnings for cgi.parse_qs() and cgi.parse_qsl()
supervisor/tests/test_web.py::UIHandlerTests::test_handle_request_tail_html
/home/travis/build/Supervisor/supervisor/supervisor/web.py:623: PendingDeprecationWarning: cgi.parse_qs is deprecated, use urlparse.parse_qs instead
query_data = parse_qs(query)
supervisor/tests/test_web.py::UIHandlerTests::test_handle_request_tail_html
/home/travis/build/Supervisor/supervisor/supervisor/web.py:622: PendingDeprecationWarning: cgi.parse_qsl is deprecated, use urlparse.parse_qsl instead
form_urlencoded = parse_qsl(data)1 parent 65beba3 commit 9cfa816
2 files changed
+3
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
80 | | - | |
81 | | - | |
82 | | - | |
83 | | - | |
84 | 79 | | |
85 | 80 | | |
86 | 81 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
12 | 11 | | |
13 | 12 | | |
14 | 13 | | |
| |||
619 | 618 | | |
620 | 619 | | |
621 | 620 | | |
622 | | - | |
623 | | - | |
| 621 | + | |
| 622 | + | |
624 | 623 | | |
625 | 624 | | |
626 | 625 | | |
| |||
0 commit comments