From 4ff890077f99ebbd05fa6e857ef7e35d91922c4d Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 5 Jul 2011 13:31:09 +0100 Subject: [PATCH] Fix silly syntax error --- app/hr/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/hr/views.py b/app/hr/views.py index e9ed787..570992f 100644 --- a/app/hr/views.py +++ b/app/hr/views.py @@ -220,7 +220,7 @@ def add_message(request, applicationid): """ Send a message to the end user and note it on the application """ app = Application.objects.get(id=applicationid) - perm = check_permissions(request.user, app): + perm = check_permissions(request.user, app) if perm: if request.method == 'POST': obj = Audit(application=app, user=request.user, event=AUDIT_EVENT_MESSAGE)