我正在尝试使用docx-mailmerge在 Python 中填充 Word 文档。一切正常,但是在另一台计算机上使用另一个版本的 Word 进行一些编辑后,我的脚本在该行出现错误:
document = MailMerge(template)
错误:
document = MailMerge(template)
File "C:\Python27\lib\site-packages\mailmerge.py", line 79, in __init__
parent.remove(child)
File "src\lxml\lxml.etree.pyx", line 950, in lxml.etree._Element.remove
(src\lxml\lxml.etree.c:50327)
ValueError: Element is not a child of this node.
这是什么意思?