Skip to content

Commit 0f50584

Browse files
committed
backend: Remove bugzilla_extensions
We no longer use it internally Signed-off-by: Cole Robinson <[email protected]>
1 parent c8c2bee commit 0f50584

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

bugzilla/_backendbase.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ def bugzilla_version(self):
4646
"""
4747
raise NotImplementedError()
4848

49-
def bugzilla_extensions(self):
50-
"""
51-
Return info about Bugzilla extensions
52-
http://bugzilla.readthedocs.io/en/latest/api/core/v1/bugzilla.html#extensions
53-
"""
54-
raise NotImplementedError()
55-
5649

5750
#######################
5851
# Bug attachment APIs #

bugzilla/_backendrest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,3 @@ def is_rest(self):
7878

7979
def bugzilla_version(self):
8080
return self._get("/version")
81-
def bugzilla_extensions(self):
82-
return self._get("/extensions")

bugzilla/_backendxmlrpc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,6 @@ def is_xmlrpc(self):
158158

159159
def bugzilla_version(self):
160160
return self._xmlrpc_proxy.Bugzilla.version()
161-
def bugzilla_extensions(self):
162-
return self._xmlrpc_proxy.Bugzilla.extensions()
163161

164162
def bug_attachment_get(self, attachment_ids, paramdict):
165163
data = paramdict.copy()

0 commit comments

Comments
 (0)