Lines Matching refs:comment_text
254 comment_text = None
256 comment_text = commit_message.body(lstrip=True)
257 comment_text += "---\n"
258 comment_text += tool.scm().files_changed_summary_for_commit(commit_id)
259 return comment_text
287 comment_text = self._comment_text_for_commit(options, commit_message, tool, commit_id)
288 tool.bugs.add_patch_to_bug(bug_id, diff_file, description, comment_text, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)
392 comment_text = ""
394 (bug_title, comment_text) = self.prompt_for_bug_title_and_comment()
398 comment_text = commit_message.body(lstrip=True)
399 comment_text += "---\n"
400 comment_text += tool.scm().files_changed_summary_for_commit(commit_id)
404 bug_id = tool.bugs.create_bug(bug_title, comment_text, options.component, diff_file, "Patch", cc=options.cc, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)
414 comment_text = ""
416 (bug_title, comment_text) = self.prompt_for_bug_title_and_comment()
420 comment_text = commit_message.body(lstrip=True)
424 bug_id = tool.bugs.create_bug(bug_title, comment_text, options.component, diff_file, "Patch", cc=options.cc, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)
438 comment_text = "".join(lines)
439 return (bug_title, comment_text)