diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-06 22:17:23 -0400 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-06 22:17:23 -0400 |
commit | d3fbae175f0cf639cfe0957e216cccf9a95e009b (patch) | |
tree | 3bbc6cd633181d543f47c24406d6b7b58c77350c /becommands | |
parent | 64794faedd01c04cbb56ccbbe299d515d4edeefe (diff) | |
parent | e312d44cc6967e18b21955c6d9658d4c04259a92 (diff) | |
download | bugseverywhere-d3fbae175f0cf639cfe0957e216cccf9a95e009b.tar.gz |
Merge remaining fixes from Zwart
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/close.py | 3 | ||||
-rw-r--r-- | becommands/inprogress.py | 3 | ||||
-rw-r--r-- | becommands/open.py | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/becommands/close.py b/becommands/close.py index 7e5ac1c..52ab735 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -30,7 +30,8 @@ def execute(args): >>> tests.clean_up() """ options, args = get_parser().parse_args(args) - assert(len(args) == 1) + if len(args) !=1: + raise cmdutil.UserError("Please specify a bug id.") bug = cmdutil.get_bug(args[0]) bug.status = "closed" bug.save() diff --git a/becommands/inprogress.py b/becommands/inprogress.py index 9e396de..05da971 100644 --- a/becommands/inprogress.py +++ b/becommands/inprogress.py @@ -30,7 +30,8 @@ def execute(args): >>> tests.clean_up() """ options, args = get_parser().parse_args(args) - assert(len(args) == 1) + if len(args) !=1: + raise cmdutil.UserError("Please specify a bug id.") bug = cmdutil.get_bug(args[0]) bug.status = "in-progress" bug.save() diff --git a/becommands/open.py b/becommands/open.py index e51bf79..f7c23c1 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -30,7 +30,8 @@ def execute(args): >>> tests.clean_up() """ options, args = get_parser().parse_args(args) - assert(len(args) == 1) + if len(args) !=1: + raise cmdutil.UserError("Please specify a bug id.") bug = cmdutil.get_bug(args[0]) bug.status = "open" bug.save() |