From: Thomas Gerigk Date: Mon, 3 Apr 2006 18:05:58 +0000 (+0200) Subject: added help to 'open'. X-Git-Tag: 1.0.0~199^2~5^2~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=755256e88d53ab478b8a6f54280bd2d6d01bca59;p=be.git added help to 'open'. (errhh... what is the status of a new bug?) --- diff --git a/becommands/open.py b/becommands/open.py index 19b8910..89067f8 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -29,7 +29,19 @@ def execute(args): u'open' >>> tests.clean_up() """ + options, args = get_parser().parse_args(args) assert(len(args) == 1) bug = cmdutil.get_bug(args[0]) bug.status = "open" bug.save() + +def get_parser(): + parser = cmdutil.CmdOptionParser("be open BUG-ID") + return parser + +longhelp=""" +Mark a bug as 'open'. +""" + +def help(): + return get_parser().help_str() + longhelp