blob: 358acd2711f7f462b420fa6ca9676951fb863806 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"""Add a comment to a bug"""
from libbe import bugdir, cmdutil, names, utility
import os
def execute(args):
options, args = get_parser().parse_args(args)
if len(args) < 1:
raise cmdutil.UsageError()
bug = cmdutil.get_bug(args[0])
if len(args) == 1:
body = utility.editor_string()
if body is None:
raise cmdutil.UserError("No comment entered.")
else:
body = args[1]
if not body.endswith('\n'):
body+='\n'
comment = bugdir.new_comment(bug, body)
comment.save()
def get_parser():
parser = cmdutil.CmdOptionParser("be comment BUG-ID COMMENT")
return parser
longhelp="""
Add a comment to a bug.
"""
def help():
return get_parser().help_str() + longhelp
|