From 8df3228dfbf1f85488dc88b41921e1d1917bc04f Mon Sep 17 00:00:00 2001 From: Will Woods Date: Thu, 13 Sep 2007 17:47:48 -0400 Subject: tweak simplequery --- bugzilla.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bugzilla.py') diff --git a/bugzilla.py b/bugzilla.py index d8195ba..d18d8b3 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 simplequery(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