use urlparse.parse_qs instead of deprecated cgi.parse_qs

This commit is contained in:
Yuming Zhu 2017-10-11 14:51:55 +00:00
parent 1a028c670a
commit 7f302491f9
2 changed files with 4 additions and 5 deletions

View file

@ -29,7 +29,7 @@ try:
except ImportError:
krbV = None
import koji
import cgi #for parse_qs
import urlparse #for parse_qs
from .context import context
from six.moves import range
from six.moves import zip
@ -78,7 +78,7 @@ class Session(object):
if not args:
self.message = 'no session args'
return
args = cgi.parse_qs(args, strict_parsing=True)
args = urlparse.parse_qs(args, strict_parsing=True)
hostip = self.get_remote_ip(override=hostip)
try:
id = long(args['session-id'][0])