File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626
2727from bugzilla .base import BugzillaBase as _BugzillaBase
2828from bugzilla .base import BugzillaError
29- from bugzilla .base import RequestsTransport
29+ from bugzilla .base import RequestsTransport as _RequestsTransport
3030from bugzilla .bugzilla3 import Bugzilla3 , Bugzilla32 , Bugzilla34 , Bugzilla36
3131from bugzilla .bugzilla4 import Bugzilla4 , Bugzilla42 , Bugzilla44
3232from bugzilla .rhbugzilla import RHBugzilla , RHBugzilla3 , RHBugzilla4
@@ -40,7 +40,7 @@ class NovellBugzilla(Bugzilla34):
4040def getBugzillaClassForURL (url , sslverify ):
4141 url = Bugzilla3 .fix_url (url )
4242 log .debug ("Detecting subclass for %s" , url )
43- s = ServerProxy (url , RequestsTransport (url , sslverify = sslverify ))
43+ s = ServerProxy (url , _RequestsTransport (url , sslverify = sslverify ))
4444 rhbz = False
4545 bzversion = ''
4646 c = None
You can’t perform that action at this time.
0 commit comments