From cb18ea54f783ed37a39fc12561329b398830d656 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 24 Nov 2008 20:55:24 -0500 Subject: [PATCH] Added invalid-value checking to becommands/set.py. Kindof a cludgy check, but there's currently no simpler way to find valid entries for a given setting name (that I can think of). --- becommands/set.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/becommands/set.py b/becommands/set.py index 287ceb4..0085f0f 100644 --- a/becommands/set.py +++ b/becommands/set.py @@ -46,7 +46,17 @@ def execute(args): print bd.settings.get(args[0]) else: if args[1] != "none": + old_setting = bd.settings[args[0]] bd.settings[args[0]] = args[1] + + # attempt to get the new value + bd.save() + try: + bd.load() + except bugdir.InvalidValue, e: + bd.settings[args[0]] = old_setting + bd.save() + raise cmdutil.UserError(e) else: del bd.settings[args[0]] bd.save() -- 2.26.2