diff options
author | Magnus Hagander | 2013-08-24 13:11:37 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-08-24 13:11:37 +0000 |
commit | 3f18edabfdc253d4816dabc2e04aa2f9faed5a7a (patch) | |
tree | 8b8652cef8ab1dd6fad24b092f81e41741b03d4b /pgcommitfest/commitfest/views.py | |
parent | ffc96c0782b8192e777f35b58521ae9462bcfa95 (diff) |
Some polishing on creation of new patches
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 cec486e..ea81d64 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -172,7 +172,7 @@ def newpatch(request, cfid): except Http404: # Thread not found! # This is a horrible breakage of API layers - form._errors['threadmsgid'] = form.error_class(('Selected thread did not exist',)) + form._errors['threadmsgid'] = form.error_class(('Selected thread did not exist in the archives',)) except Exception: form._errors['threadmsgid'] = form.error_class(('An error occurred looking up the thread in the archives.',)) else: |