diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-03-28 21:39:15 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-03-28 21:39:15 +0000 |
| commit | 341d1eb022a694a185651af514e65856fed17938 (patch) | |
| tree | d09d29e67c092c728b530ece8082b671f0d74b17 | |
| parent | 66e04858eb8b5624da1b0e2797ec3aad90410e90 (diff) | |
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
| -rw-r--r-- | django/core/validators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/validators.py b/django/core/validators.py index 27ef538c02..88cf6db4e1 100644 --- a/django/core/validators.py +++ b/django/core/validators.py @@ -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: |
