diff options
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/close.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/becommands/close.py b/becommands/close.py index 04ae4ba..3c1eb43 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -29,7 +29,20 @@ def execute(args): u'closed' >>> tests.clean_up() """ + options, args = get_parser().parse_args(args) assert(len(args) == 1) bug = cmdutil.get_bug(args[0]) bug.status = "closed" bug.save() + +def get_parser(): + parser = cmdutil.CmdOptionParser("be close bug-id") + return parser + +longhelp=""" +Close the bug identified by bug-id. +""" + +def help(): + return get_parser().help_str() + longhelp + |