summaryrefslogtreecommitdiffstats
path: root/bugzilla
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-08-22 16:28:35 -0400
committerWill Woods <wwoods@redhat.com>2008-08-22 16:28:35 -0400
commit2d8243e272243ed0692db47a53f3b939a8440b13 (patch)
tree457597505a7ac823fb8e2c6337f555e330b6629c /bugzilla
parent91d0aef5632d3fc59c97ee9869b20b941e536c65 (diff)
downloadpython-bugzilla-2d8243e272243ed0692db47a53f3b939a8440b13.tar.gz
python-bugzilla-2d8243e272243ed0692db47a53f3b939a8440b13.tar.xz
python-bugzilla-2d8243e272243ed0692db47a53f3b939a8440b13.zip
replace_getbug_errors_with_None moved to bugzilla.base - fix call
Diffstat (limited to 'bugzilla')
-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.