diff options
author | Magnus Hagander | 2014-07-15 10:18:52 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-07-15 10:18:52 +0000 |
commit | 314011ef5183c8ad40bf7d73e572d64389a9cc73 (patch) | |
tree | 32382c6dc537c5f15ad85e706f0dac038c2ba73c /pgcommitfest/commitfest/ajax.py | |
parent | e6fd075d049e1f66ccdb515dcc376d99027fc7fc (diff) |
Fix typo. Clearly not tested..
Diffstat (limited to 'pgcommitfest/commitfest/ajax.py')
-rw-r--r-- | pgcommitfest/commitfest/ajax.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/ajax.py b/pgcommitfest/commitfest/ajax.py index d0e5620..9d53e53 100644 --- a/pgcommitfest/commitfest/ajax.py +++ b/pgcommitfest/commitfest/ajax.py @@ -104,7 +104,7 @@ def doAttachThread(cf, patch, msgid, user): thread.latestmessage=r[-1]['date'] thread.latestauthor=r[-1]['from'] thread.latestsubject=r[-1]['subj'] - thread.altestmsgid=r[-1]['msgid'] + thread.latestmsgid=r[-1]['msgid'] thread.save() return True @@ -163,4 +163,3 @@ def main(request, command): return resp except Http503, e: return HttpResponseServiceUnavailable(e, mimetype='text/plain') - |