Browse Source

Use urlparse.parse_qs rather than deprecated cgi.parse_qs.

Jelmer Vernooij 15 năm trước cách đây
mục cha
commit
6f995972f1
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      dulwich/web.py

+ 2 - 2
dulwich/web.py

@@ -19,9 +19,9 @@
 """HTTP server for dulwich that implements the git smart HTTP protocol."""
 """HTTP server for dulwich that implements the git smart HTTP protocol."""
 
 
 from cStringIO import StringIO
 from cStringIO import StringIO
-import cgi
 import re
 import re
 import time
 import time
+import urlparse
 
 
 from dulwich.server import (
 from dulwich.server import (
     ReceivePackHandler,
     ReceivePackHandler,
@@ -109,7 +109,7 @@ default_services = {'git-upload-pack': UploadPackHandler,
 def get_info_refs(req, backend, mat, services=None):
 def get_info_refs(req, backend, mat, services=None):
     if services is None:
     if services is None:
         services = default_services
         services = default_services
-    params = cgi.parse_qs(req.environ['QUERY_STRING'])
+    params = urlparse.parse_qs(req.environ['QUERY_STRING'])
     service = params.get('service', [None])[0]
     service = params.get('service', [None])[0]
     if service and not req.dumb:
     if service and not req.dumb:
         handler_cls = services.get(service, None)
         handler_cls = services.get(service, None)