Learn more about these different git repos.
Other Git URLs
17b94c6
@@ -34,6 +34,9 @@
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
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.
(import was removed in 9212587)
Commit 822311f fixes this pull-request
Pull-Request has been merged by mikem
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.
(import was removed in 9212587)