From: Marien Zwart Date: Wed, 5 Apr 2006 21:12:49 +0000 (+0200) Subject: Friendlier error message on "inprogress" or "open" with no arguments. X-Git-Tag: 1.0.0~198^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e312d44cc6967e18b21955c6d9658d4c04259a92;p=be.git Friendlier error message on "inprogress" or "open" with no arguments. --- 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()