diff options
author | Will Woods <wwoods@redhat.com> | 2007-09-13 17:41:59 -0400 |
---|---|---|
committer | Will Woods <wwoods@redhat.com> | 2007-09-13 17:41:59 -0400 |
commit | 6342b81bcce988c4ca37178e6e0dec4dead4dea9 (patch) | |
tree | dc0e7998c438dcd70f2bbdcd30a9427b5506a769 | |
parent | 2dc7a518e6a10b7860ad5ca51b683fcb34243bfd (diff) | |
download | python-bugzilla-6342b81bcce988c4ca37178e6e0dec4dead4dea9.tar.gz python-bugzilla-6342b81bcce988c4ca37178e6e0dec4dead4dea9.tar.xz python-bugzilla-6342b81bcce988c4ca37178e6e0dec4dead4dea9.zip |
change query_comments to simplequery
-rw-r--r-- | bugzilla.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |