Replace isn't with is not

This commit is contained in:
karlchillmaid
2019-09-13 11:55:21 +01:00
committed by Chris Hill-Scott
parent 90b8af63d5
commit 4b2990e735

View File

@@ -32,7 +32,7 @@ class CsvFileValidator:
def __call__(self, form, field):
if not Spreadsheet.can_handle(field.data.filename):
raise ValidationError("{} isnt a spreadsheet that Notify can read".format(field.data.filename))
raise ValidationError("{} is not a spreadsheet that Notify can read".format(field.data.filename))
class ValidGovEmail: