diff options
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/close.py | 3 |
1 files changed, 2 insertions, 1 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() |