mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
remove print statements that were causing unicode errors
This commit is contained in:
parent
4739255e23
commit
6ae21e86af
1 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue