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
When i use function
kdb.add_entry(parent_kdb_group, entry.title, entry.username, entry.password, entry.url, entry.notes)
and entry.title contains quote, in PyKeePass._xpath function xpath_str formed like this:
xpath_str = './Entry/String/Key[text()="Title"]/../Value[text()="test "inner""]/../../String/Key[text()="UserName"]/../Value[text()="some username"]/../..'
when tree.xpath() is runned it thows exception XpathEvalError: Invalid predicate It happens because syntaxis like
Value[text()="test "inner""]
can't be used in xpath.
Can you please fix this problem?
The text was updated successfully, but these errors were encountered:
entry._get_string_field
key
Successfully merging a pull request may close this issue.
When i use function
and entry.title contains quote, in PyKeePass._xpath function xpath_str formed like this:
when tree.xpath() is runned it thows exception XpathEvalError: Invalid predicate
It happens because syntaxis like
can't be used in xpath.
Can you please fix this problem?
The text was updated successfully, but these errors were encountered: