From fe0234f11966697d150613c3c118d97ccebe6a47 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Wed, 5 Sep 2007 18:09:06 -0400 Subject: minor doc/comment cleanups --- bugzilla.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bugzilla.py b/bugzilla.py index 62bd6bb..9133774 100644 --- a/bugzilla.py +++ b/bugzilla.py @@ -136,8 +136,7 @@ class Bugzilla(object): def query(self,query): '''Query bugzilla and return a list of matching bugs. - query should be a dict that matches the fields in querydata['fields'].. - or something. + query must be a dict with fields like those in in querydata['fields']. Returns a dict like this: {'bugs':buglist, 'displaycolumns':columnlist, @@ -152,7 +151,7 @@ class Bugzilla(object): ''' return self._proxy.bugzilla.runQuery(query,self.user,self.password) - # TODO: createbug, attachfile, searchbugs, setstatus, closebug, + # TODO: createbug, attachfile, setstatus, closebug, # setassignee, updatedeps, setwhiteboard, updatecc # TODO: allow 'tagging' by adding text to the whiteboard(s) # TODO: flags? -- cgit