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:
parent
3d7a6af560
commit
4cd37132dd
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue