summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bugzilla/rhbugzilla.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bugzilla/rhbugzilla.py b/bugzilla/rhbugzilla.py
index beb31df..978999b 100644
--- a/bugzilla/rhbugzilla.py
+++ b/bugzilla/rhbugzilla.py
@@ -85,7 +85,7 @@ class RHBugzilla(bugzilla.base.BugzillaBase):
raw_results = mc.run()
del mc
# check results for xmlrpc errors, and replace them with None
- return replace_getbug_errors_with_None(raw_results)
+ return bugzilla.base.replace_getbug_errors_with_None(raw_results)
def _getbugssimple(self,idlist):
'''Like _getbugsimple, but takes a list of ids and returns a
corresponding list of bug objects. Uses multicall for awesome speed.'''
@@ -95,7 +95,7 @@ class RHBugzilla(bugzilla.base.BugzillaBase):
raw_results = mc.run()
del mc
# check results for xmlrpc errors, and replace them with None
- return replace_getbug_errors_with_None(raw_results)
+ return bugzilla.base.replace_getbug_errors_with_None(raw_results)
def _query(self,query):
'''Query bugzilla and return a list of matching bugs.