Skip to content

Commit e4aa528

Browse files
committed
bugzilla: Don't add public RequestsTransport to namespace
1 parent 2e36c40 commit e4aa528

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bugzilla/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
from bugzilla.base import BugzillaBase as _BugzillaBase
2828
from bugzilla.base import BugzillaError
29-
from bugzilla.base import RequestsTransport
29+
from bugzilla.base import RequestsTransport as _RequestsTransport
3030
from bugzilla.bugzilla3 import Bugzilla3, Bugzilla32, Bugzilla34, Bugzilla36
3131
from bugzilla.bugzilla4 import Bugzilla4, Bugzilla42, Bugzilla44
3232
from bugzilla.rhbugzilla import RHBugzilla, RHBugzilla3, RHBugzilla4
@@ -40,7 +40,7 @@ class NovellBugzilla(Bugzilla34):
4040
def 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

0 commit comments

Comments
 (0)