Commit df1cc366 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Removed some debug accidentally committed in r13201.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13205 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 861baecd
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -21,22 +21,16 @@ class RegexValidator(object):
    code = 'invalid'

    def __init__(self, regex=None, message=None, code=None):
        print 'test'
        if regex is not None:
            print 1
            self.regex = regex
        if message is not None:
            print 2
            self.message = message
        if code is not None:
            print 3
            self.code = code

        print 4
        if isinstance(self.regex, basestring):
            print 5
            self.regex = re.compile(regex)
        print 'REGEX', type(self.regex), self.regex

    def __call__(self, value):
        """
        Validates that the input matches the regular expression.