From: Magnus Hagander Date: Sun, 18 Aug 2013 17:18:28 +0000 (+0200) Subject: Fix typos X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=728c68e5f7cf0e0d3fa83decd37c16cb5de9b1e1;p=pgcommitfest2.git Fix typos --- diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index 1a8ed82..da779c8 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -287,7 +287,7 @@ def close(request, cfid, patchid, status): # have checked that we're not closed yet. Therefor, we don't # need to check if the individual status has changed. if status == 'reject': - poc.status = PatchOnCommitFest.STATUS_REJECT + poc.status = PatchOnCommitFest.STATUS_REJECTED elif status == 'feedback': poc.status = PatchOnCommitFest.STATUS_RETURNED # Figure out the commitfest to actually put it on @@ -314,7 +314,7 @@ def close(request, cfid, patchid, status): else: raise Exception("Can't happen") - poc.patch.set_mofified() + poc.patch.set_modified() poc.patch.save() poc.save()