Change apostrophes to prettier ones

Co-Authored-By: Chris Hill-Scott <me@quis.cc>
This commit is contained in:
Pea (Malgorzata Tyczynska)
2019-07-22 10:48:34 +01:00
committed by GitHub
parent e9de84beb0
commit 957cf46748
2 changed files with 3 additions and 3 deletions

View File

@@ -184,6 +184,6 @@ def can_letter_job_be_cancelled(job):
if count_cancellable_notifications != job.notification_count or not letter_can_be_cancelled(
NOTIFICATION_CREATED, job.created_at
):
return False, "It's too late to cancel sending, these letters have already been sent."
return False, "Its too late to cancel sending, these letters have already been sent."
return True, None