From 2d8243e272243ed0692db47a53f3b939a8440b13 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Fri, 22 Aug 2008 16:28:35 -0400 Subject: replace_getbug_errors_with_None moved to bugzilla.base - fix call --- bugzilla/rhbugzilla.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bugzilla') 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. -- cgit