diff options
author | Magnus Hagander | 2015-02-06 12:05:35 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-02-06 12:05:35 +0000 |
commit | 1a5e91e7a51a084cd908513ca02185f39d426398 (patch) | |
tree | 4ecbb20a8afa979e36ae88aca8a3eaa6911ce260 /pgcommitfest/commitfest/views.py | |
parent | 0219f08444d8840a65cdb08a18a897f2777cd0f5 (diff) |
Show full email address of pgsql-hackers
Suggested by Stefan K
Diffstat (limited to 'pgcommitfest/commitfest/views.py')
-rw-r--r-- | pgcommitfest/commitfest/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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': '<b>Note!</b> This form will generate an email to the public mailinglist <i>pgsql-hackers</i>, with sender set to %s!' % (UserWrapper(request.user).email), + 'note': '<b>Note!</b> This form will generate an email to the public mailinglist <i>%s</i>, with sender set to <i>%s</i>!' % (settings.HACKERS_EMAIL, UserWrapper(request.user).email), 'savebutton': 'Send %s' % what, }, context_instance=RequestContext(request)) |