Replace won't with will not

This commit is contained in:
karlchillmaid
2019-09-13 11:16:27 +01:00
committed by Chris Hill-Scott
parent 4c6f32df73
commit 653c2c399f

View File

@@ -84,7 +84,7 @@ class OnlySMSCharacters:
non_sms_characters = sorted(list(SanitiseSMS.get_non_compatible_characters(field.data)))
if non_sms_characters:
raise ValidationError(
'You cant use {} in text messages. {} wont show up properly on everyones phones.'.format(
'You cant use {} in text messages. {} will not show up properly on everyones phones.'.format(
formatted_list(non_sms_characters, conjunction='or', before_each='', after_each=''),
('It' if len(non_sms_characters) == 1 else 'They')
)