Home | History | Annotate | Download | only in commands

Lines Matching refs:patch

58         for patch in patches:
59 print patch.url()
67 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"),
72 def _needs_commit_queue(patch):
73 if patch.commit_queue() == "+": # If it's already cq+, ignore the patch.
74 log("%s already has cq=%s" % (patch.id(), patch.commit_queue()))
78 committer_record = CommitterList().committer_by_email(patch.attacher_email())
80 log("%s committer = %s" % (patch.id(), committer_record))
87 bugs_needing_cq = map(lambda patch: patch.bug_id(), patches_needing_cq)
92 for patch in patches_needing_cq:
93 print "%s" % tool.bugs.attachment_url_for_id(patch.id(), action="edit")