From f799d379d1f92a5e11885bf0688e6de00a2526b6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 30 May 2016 23:55:25 -0400 Subject: [PATCH] Remove print statement. --- mayan/apps/ocr/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mayan/apps/ocr/views.py b/mayan/apps/ocr/views.py index 0fd2709fbb..2c4f237867 100644 --- a/mayan/apps/ocr/views.py +++ b/mayan/apps/ocr/views.py @@ -99,7 +99,6 @@ class DocumentTypeSubmitView(FormView): def form_valid(self, form): count = 0 - print form.cleaned_data for document in form.cleaned_data['document_type'].documents.all(): document.submit_for_ocr() count += 1