fix syntax error
diff --git a/plstackapi/planetstack/views/roles.py b/plstackapi/planetstack/views/roles.py
index 6a08daa..8286f9f 100644
--- a/plstackapi/planetstack/views/roles.py
+++ b/plstackapi/planetstack/views/roles.py
@@ -14,7 +14,7 @@
 
     def post(self, request, format = None):
         
-        if 'auth' not in request.DATA
+        if 'auth' not in request.DATA:
             return Response(status=status.HTTP_400_BAD_REQUEST)        
         else if 'name' in request.DATA:
             role = add_role(request.DATA['auth'], request.DATA['name'])