Lines Matching refs:api_key
110 def update_summary(self, api_key, doit): argument
121 self.modify_bug(api_key, {'summary': new_summary}, doit)
126 …def change_milestone(self, api_key, old_milestone, new_milestone, comment, new_fail_version, doit): argument
153 self.modify_bug(api_key, args, doit)
176 def modify_bug(self, api_key, params, doit): argument
181 'api_key': api_key}
196 def get_bugs(api_key, query): argument
202 def search(api_key, remove, add, limit, doit): argument
203 …bugs = Bug.get_bugs(api_key, {'api_key': api_key, 'summary': search_summary, 'bug_status': statuse…
213 if bug.update_summary(api_key, doit):
221 def replace_milestone(api_key, limit, old_milestone, new_milestone, comment, add_known_to_fail, doi… argument
222 …bugs = Bug.get_bugs(api_key, {'api_key': api_key, 'bug_status': statuses, 'target_milestone': old_…
226 … if bug.change_milestone(api_key, old_milestone, new_milestone, comment, add_known_to_fail, doit):
251 search(args.api_key, args.remove, args.add, args.limit, args.doit)
255 …replace_milestone(args.api_key, args.limit, t[0], t[1], args.comment, args.add_known_to_fail, args…