kojikamid.py: use urllib from six.moves

kojikamid has the SCM class from daemon.py inserted into it at build time. This class
has been converted to use urllib from six.moves (for Python 3 compatibility), rather
than using urlparse. Update the import in kojikamid.py to be compatible with this change.
This commit is contained in:
Mike Bonnet 2019-11-26 10:18:43 -08:00 committed by Tomas Kopecek
parent 3d7a6af560
commit 4cd37132dd

View file

@ -34,9 +34,9 @@ import subprocess
import sys
import tempfile
import time
# urlparse is required by the SCM class which is substituted into this file
# urllib is required by the SCM class which is substituted into this file
# do not remove the import below
import urlparse
from six.moves import urllib
import six.moves.xmlrpc_client
import base64
import hashlib