From 90424eb4b0233f8964bae786b2d88d69c7222d63 Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Wed, 23 Mar 2016 16:24:50 -0400 Subject: [PATCH] Removed pirate debugging statement --- awx/api/permissions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/api/permissions.py b/awx/api/permissions.py index a6549082f2..bc1447ba03 100644 --- a/awx/api/permissions.py +++ b/awx/api/permissions.py @@ -117,7 +117,6 @@ class ModelAccessPermission(permissions.BasePermission): check_method = getattr(self, 'check_%s_permissions' % request.method.lower(), None) result = check_method and check_method(request, view, obj) if not result: - print('Yarr permission denied: %s %s %s' % (request.method, repr(view), repr(obj),)) # TODO: XXX: This shouldn't have been committed but anoek is sloppy, remove me after we're done fixing bugs raise PermissionDenied() return result