From 6ae21e86af00d1ea0b9ac1762ab57d20dafc300b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 25 Jan 2017 15:12:48 +1000 Subject: [PATCH] remove print statements that were causing unicode errors --- aqt/editor.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aqt/editor.py b/aqt/editor.py index 77b924d7d..36d1db007 100644 --- a/aqt/editor.py +++ b/aqt/editor.py @@ -1090,11 +1090,11 @@ class EditorWebView(AnkiWebView): # returns (html, isInternal) def _processMime(self, mime): - print("html=%s image=%s urls=%s txt=%s" % ( - mime.hasHtml(), mime.hasImage(), mime.hasUrls(), mime.hasText())) - print("html", mime.html()) - print("urls", mime.urls()) - print("text", mime.text()) + # print("html=%s image=%s urls=%s txt=%s" % ( + # mime.hasHtml(), mime.hasImage(), mime.hasUrls(), mime.hasText())) + # print("html", mime.html()) + # print("urls", mime.urls()) + # print("text", mime.text()) # try various content types in turn html, internal = self._processHtml(mime)