|
From: <sub...@co...> - 2006-04-19 17:44:58
|
Author: test
Date: 2006-04-19 11:44:52 -0600 (Wed, 19 Apr 2006)
New Revision: 1719
Modified:
FormEncode/trunk/formencode/validators.py
Log:
Fixed message
Modified: FormEncode/trunk/formencode/validators.py
===================================================================
--- FormEncode/trunk/formencode/validators.py 2006-04-19 16:34:02 UTC (rev 1718)
+++ FormEncode/trunk/formencode/validators.py 2006-04-19 17:44:52 UTC (rev 1719)
@@ -375,7 +375,7 @@
__unpackargs__ = ('minLength',)
messages = {
- 'tooShort': "Enter a value more than %(minLength)i characters long",
+ 'tooShort': "Enter a value at least %(minLength)i characters long",
'invalid': "Invalid value (value with length expected)",
}
|