Fixed a typo

This commit is contained in:
Raphael Michel
2015-06-15 23:53:41 +02:00
parent c0c9098f38
commit 44863471b7

View File

@@ -59,7 +59,7 @@ def organizer_permission_required(permission):
# just a double check, should not ever happen
return HttpResponseForbidden()
try:
perm = OrganizerPermission.current.objects.get(
perm = OrganizerPermission.objects.current.get(
organizer=request.organizer,
user=request.user
)