From 85dd7ae7787e43be07a5a78a2f7d0ed4883937fe Mon Sep 17 00:00:00 2001 From: Andreas Scherbaum Date: Fri, 16 Nov 2018 14:20:03 +0100 Subject: [PATCH] Don't use hardcoded pgsql-hackers name in status message Instead use the value from the settings file, which is what's actually used to send. --- pgcommitfest/commitfest/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index 54d4180..47c3848 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -442,7 +442,7 @@ def comment(request, cfid, patchid, what): PatchHistory(patch=patch, by=request.user, what='Posted %s with messageid %s' % (what, msg['Message-ID'])).save() - messages.add_message(request, messages.INFO, "Your email has been queued for pgsql-hackers, and will be sent within a few minutes.") + messages.add_message(request, messages.INFO, "Your email has been queued for %s, and will be sent within a few minutes." % (settings.HACKERS_EMAIL)) return HttpResponseRedirect('/%s/%s/' % (cf.id, patch.id)) else: -- 2.39.5