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)