From 6c8b325a4a4f895c9e3a75a8316517a138ebbaba Mon Sep 17 00:00:00 2001 From: Thomas Gerigk Date: Mon, 3 Apr 2006 19:48:17 +0200 Subject: [PATCH] changed assign.py to look similar to those commands using get_parser()-stuff. (No, i don't really know what i'm doing |-) --- becommands/assign.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/becommands/assign.py b/becommands/assign.py index f3db6aa..2308a12 100644 --- a/becommands/assign.py +++ b/becommands/assign.py @@ -37,6 +37,7 @@ def execute(args): True >>> tests.clean_up() """ + options, args = get_parser().parse_args(args) assert(len(args) in (0, 1, 2)) if len(args) == 0: print help() @@ -51,10 +52,11 @@ def execute(args): bug.assigned = args[1] bug.save() +def get_parser(): + parser = cmdutil.CmdOptionParser("be assign bug-id [assignee]") + return parser -def help(): - return """be assign bug-id [assignee] - +longhelp = """ Assign a person to fix a bug. By default, the bug is self-assigned. If an assignee is specified, the bug @@ -65,3 +67,6 @@ appears in Creator fields. To un-assign a bug, specify "none" for the assignee. """ + +def help(): + return get_parser().help_str() + longhelp -- 2.26.2