From 8ee158226a358046d1c5a2d63c6da3702c1e9e5d Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 10 Oct 2010 15:46:37 -0400 Subject: [PATCH] Changing error message. --- cake/console/console_input_option.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/console_input_option.php b/cake/console/console_input_option.php index 0899d6df4..466012ae1 100644 --- a/cake/console/console_input_option.php +++ b/cake/console/console_input_option.php @@ -128,7 +128,7 @@ class ConsoleInputOption { } if (!in_array($value, $this->_choices)) { throw new InvalidArgumentException( - sprintf(__('"%s" is not a valid option for --%s'), $value, $this->_name) + sprintf(__('"%s" is not a valid value for --%s'), $value, $this->_name) ); } return true;