Fix documentation error: removed unused variable (#4647)

This commit is contained in:
Carlos de la Torre 2016-11-02 11:03:53 -03:00 committed by Tom Christie
parent 45e058d7ba
commit d55e176a1e

View File

@ -626,7 +626,6 @@ The `.fail()` method is a shortcut for raising `ValidationError` that takes a me
def to_internal_value(self, data):
if not isinstance(data, six.text_type):
msg = 'Incorrect type. Expected a string, but got %s'
self.fail('incorrect_type', input_type=type(data).__name__)
if not re.match(r'^rgb\([0-9]+,[0-9]+,[0-9]+\)$', data):