Kaydet (Commit) 341d1eb0 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Fixed #1550 -- Changed MatchesRegularExpression validator to use .search(), not…

Fixed #1550 -- Changed MatchesRegularExpression validator to use .search(), not .match(). Thanks, Gary Wilson

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2588 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 66e04858
......@@ -379,7 +379,7 @@ class MatchesRegularExpression:
self.error_message = error_message
def __call__(self, field_data, all_data):
if not self.regexp.match(field_data):
if not self.regexp.search(field_data):
raise ValidationError(self.error_message)
class AnyValidator:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment