summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest/views.py
diff options
context:
space:
mode:
authorMagnus Hagander2013-08-24 13:11:37 +0000
committerMagnus Hagander2013-08-24 13:11:37 +0000
commit3f18edabfdc253d4816dabc2e04aa2f9faed5a7a (patch)
tree8b8652cef8ab1dd6fad24b092f81e41741b03d4b /pgcommitfest/commitfest/views.py
parentffc96c0782b8192e777f35b58521ae9462bcfa95 (diff)
Some polishing on creation of new patches
Diffstat (limited to 'pgcommitfest/commitfest/views.py')
-rw-r--r--pgcommitfest/commitfest/views.py2
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: