From 1a5e91e7a51a084cd908513ca02185f39d426398 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 6 Feb 2015 13:05:35 +0100 Subject: [PATCH] Show full email address of pgsql-hackers Suggested by Stefan K --- 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 3268b7e..ab622c9 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -368,7 +368,7 @@ def comment(request, cfid, patchid, what): 'breadcrumbs': [{'title': cf.title, 'href': '/%s/' % cf.pk}, {'title': 'View patch', 'href': '/%s/%s/' % (cf.pk, patch.pk)}], 'title': "Add %s" % what, - 'note': 'Note! This form will generate an email to the public mailinglist pgsql-hackers, with sender set to %s!' % (UserWrapper(request.user).email), + 'note': 'Note! This form will generate an email to the public mailinglist %s, with sender set to %s!' % (settings.HACKERS_EMAIL, UserWrapper(request.user).email), 'savebutton': 'Send %s' % what, }, context_instance=RequestContext(request)) -- 2.39.5