From dd59e83d54947865d9efbfb7f3a19abc412ba615 Mon Sep 17 00:00:00 2001 From: Lauryn Menard Date: Fri, 30 Jun 2023 21:18:29 +0200 Subject: [PATCH] welcome-emails: Make some code comments and docstrings more evergreen. --- zerver/management/commands/deliver_scheduled_emails.py | 3 +-- zproject/urls.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/zerver/management/commands/deliver_scheduled_emails.py b/zerver/management/commands/deliver_scheduled_emails.py index 503aa5d4a4..c7ffbfd631 100644 --- a/zerver/management/commands/deliver_scheduled_emails.py +++ b/zerver/management/commands/deliver_scheduled_emails.py @@ -1,7 +1,6 @@ """\ Send email messages that have been queued for later delivery by -various things (at this time invitation reminders and day1/day2 -followup emails). +various things (e.g. invitation reminders and welcome emails). This management command is run via supervisor. """ diff --git a/zproject/urls.py b/zproject/urls.py index e5c75e0e86..7850dfeaa9 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -587,7 +587,7 @@ i18n_urls = [ name="confirm_email_change", ), # Email unsubscription endpoint. Allows for unsubscribing from various types of emails, - # including the welcome emails (day 1 & 2), missed PMs, etc. + # including welcome emails, missed direct messages, etc. path( "accounts/unsubscribe//", email_unsubscribe,