aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
diff options
context:
space:
mode:
authorThomas Gerigk <tgerigk@gmx.de>2006-04-03 19:48:17 +0200
committerThomas Gerigk <tgerigk@gmx.de>2006-04-03 19:48:17 +0200
commit6c8b325a4a4f895c9e3a75a8316517a138ebbaba (patch)
tree0a3057497f9b356cad99b8b56c1c110d770ccbe0 /becommands
parent6cd159334b3d23e515926a566c751f1fc006bfe9 (diff)
downloadbugseverywhere-6c8b325a4a4f895c9e3a75a8316517a138ebbaba.tar.gz
changed assign.py to look similar to those commands using get_parser()-stuff.
(No, i don't really know what i'm doing |-)
Diffstat (limited to 'becommands')
-rw-r--r--becommands/assign.py11
1 files 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