re-add import removed by 921258749a

kojikamid has code from other files substituted into it, to reduce
copy-paste. In this case, the SCM class from koji/daemon.py
requires the urlparse module.
This commit is contained in:
Mike Bonnet 2019-01-08 07:34:16 -08:00 committed by Mike McLean
parent a224695d1c
commit 6bdb18e26f

View file

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