We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Document method get_xml_metadata on line 4274 of init.py the following code is accessing the wrong property internal.
if xml and xml.internal:
It should be:
if xml and xml.m_internal:
Open a document
Run the method Document.get_xml_metadata
1.23.19
MacOS
3.11
The text was updated successfully, but these errors were encountered:
Thanks for this, you are quite right. It's fixed in my tree.
Sorry, something went wrong.
address #3100, fix for Document.get_xml_metadata().
f274aec
fc405f7
Fixed in 1.23.20.
No branches or pull requests
Description of the bug
In the Document method get_xml_metadata on line 4274 of init.py the following code is accessing the wrong property internal.
if xml and xml.internal:
It should be:
if xml and xml.m_internal:
How to reproduce the bug
Open a document
Run the method Document.get_xml_metadata
PyMuPDF version
1.23.19
Operating system
MacOS
Python version
3.11
The text was updated successfully, but these errors were encountered: