Lines Matching refs:api_key
96 def update_summary(self, api_key, doit): argument
102 self.modify_bug(api_key, {'summary': new_summary}, doit)
108 …def change_milestone(self, api_key, old_milestone, new_milestone, comment, new_fail_version, doit): argument
134 self.modify_bug(api_key, args, doit)
151 def modify_bug(self, api_key, params, doit): argument
156 'api_key': api_key }
171 def get_bugs(api_key, query): argument
176 def search(api_key, remove, add, limit, doit): argument
177 …bugs = Bug.get_bugs(api_key, {'api_key': api_key, 'summary': search_summary, 'bug_status': statuse…
187 if bug.update_summary(api_key, doit):
194 def replace_milestone(api_key, limit, old_milestone, new_milestone, comment, add_known_to_fail, doi… argument
195 …bugs = Bug.get_bugs(api_key, {'api_key': api_key, 'bug_status': statuses, 'target_milestone': old_…
199 … if bug.change_milestone(api_key, old_milestone, new_milestone, comment, add_known_to_fail, doit):
221 search(args.api_key, args.remove, args.add, args.limit, args.doit)
225 …replace_milestone(args.api_key, args.limit, t[0], t[1], args.comment, args.add_known_to_fail, args…