diff options
author | Andreas Scherbaum | 2018-11-16 13:20:03 +0000 |
---|---|---|
committer | Magnus Hagander | 2018-11-16 13:20:03 +0000 |
commit | 85dd7ae7787e43be07a5a78a2f7d0ed4883937fe (patch) | |
tree | 7550c87090fb8d491c562bac36db7a3e9dba09fa /pgcommitfest/commitfest/views.py | |
parent | 6b9275492b56f2fda7b117aa522993962de3465e (diff) |
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.
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 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: |