From afc3b45edd230feca46039beed8ba0ce88e3ee2e Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 18 Dec 2017 16:33:18 +1100 Subject: [PATCH] Remove an extraneous print call --- micropub/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/micropub/views.py b/micropub/views.py index 66022df..5541e30 100644 --- a/micropub/views.py +++ b/micropub/views.py @@ -48,7 +48,6 @@ class MicropubView(View): status=415, ) body = normalise[request.content_type](request) - print(body) if 'type' not in body: return utils.bad_req('mf2 object type required') if body['type'] != ['h-entry']: