summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-11-07 10:03:17 +0100
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-11-07 10:03:17 +0100
commitb6969795cdd83f5fe693fd3e140356c2b4db7609 (patch)
tree5dd9f721b5cd398d3838099d8e8a8c6d95492527
parent01feaf17065e2e8baa3120fab9eefb8830b86952 (diff)
downloadlogilab-common-b6969795cdd83f5fe693fd3e140356c2b4db7609.tar.gz
[#6529] fix date_validator check call
-rw-r--r--configuration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configuration.py b/configuration.py
index 940992a..6abf149 100644
--- a/configuration.py
+++ b/configuration.py
@@ -162,7 +162,7 @@ def password_validator(opt_dict, name, value):
def date_validator(opt_dict, name, value):
"""validate and return a mx DateTime object for option of type 'date'"""
- return check_password(None, name, value)
+ return check_date(None, name, value)
VALIDATORS = {'string' : unquote,