We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce649a commit 340132bCopy full SHA for 340132b
1 file changed
src/__init__.py
@@ -9900,7 +9900,7 @@ def _addAnnot_FromString(self, linklist):
9900
txtpy = linklist[i]
9901
text = JM_StrAsChar(txtpy)
9902
if not text:
9903
- message("skipping bad link / annot item %i.", i)
+ message("skipping bad link / annot item %i." % i)
9904
continue
9905
try:
9906
annot = mupdf.pdf_add_object( page.doc(), JM_pdf_obj_from_str( page.doc(), text))
@@ -20093,7 +20093,7 @@ def JM_get_fontextension(doc, xref):
20093
elif mupdf.pdf_name_eq(obj, PDF_NAME('OpenType')):
20094
return "otf"
20095
else:
20096
- message("unhandled font type '%s'", mupdf.pdf_to_name(obj))
+ message("unhandled font type '%s'" % mupdf.pdf_to_name(obj))
20097
20098
return "n/a"
20099
0 commit comments