Hello,
as recommended, I downloaded the latest version from bzr. I am successfully parsing a bibtex file but I would like to add a field to each entry. However, this returns an error:
from pybtex.database.input import bibtex
bibRefs = bibtex.Parser().parse_file(bibtexFile)
bibRefs.entries["test"]["file"] = []
...
TypeError: 'Entry' object does not support item assignment
How should I do it?
Thanks,
TF
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Hi,
should be like this:
Perfect, thanks! (I don't know how to close this ticket.)