From: Thomas Gerigk Date: Mon, 3 Apr 2006 18:23:28 +0000 (+0200) Subject: parsified 'target'-help. X-Git-Tag: 1.0.0~199^2~5^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4ca8ca0bab5d57bc6d9e3d714294474829a78e80;p=be.git parsified 'target'-help. (target or aim..) --- diff --git a/becommands/target.py b/becommands/target.py index d077da5..8f23ac5 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -35,6 +35,7 @@ def execute(args): No target assigned. >>> tests.clean_up() """ + options, args = get_parser().parse_args(args) assert(len(args) in (0, 1, 2)) if len(args) == 0: print help() @@ -52,10 +53,11 @@ def execute(args): bug.target = args[1] bug.save() +def get_parser(): + parser = cmdutil.CmdOptionParser("be target bug-id [target]") + return parser -def help(): - return """be target bug-id [target] - +longhelp=""" Show or change a bug's target for fixing. If no target is specified, the current value is printed. If a target @@ -66,3 +68,7 @@ milestone names or release numbers. The value "none" can be used to unset the target. """ + +def help(): + return get_parser().help_str() + longhelp +