From 6342b81bcce988c4ca37178e6e0dec4dead4dea9 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Thu, 13 Sep 2007 17:41:59 -0400 Subject: change query_comments to simplequery --- bugzilla.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bugzilla.py') diff --git a/bugzilla.py b/bugzilla.py index dad37f9..d8195ba 100644 --- a/bugzilla.py +++ b/bugzilla.py @@ -274,7 +274,7 @@ class Bugzilla(object): r = self._query(query) return [Bug(bugzilla=self,dict=b) for b in r['bugs']] - def query_comments(self,product,version,component,string,matchtype='allwordssubstr'): + def simplequery(self,product,version,component,string,matchtype='allwordssubstr'): '''Convenience method - query for bugs filed against the given product, version, and component whose comments match the given string. matchtype specifies the type of match to be done. matchtype may be -- cgit