mo processing test
This commit is contained in:
parent
e14180cbe7
commit
9166790de9
5 changed files with 31 additions and 3 deletions
|
|
@ -36,8 +36,8 @@ class Passwords:
|
|||
path = key_parts[:-2] if len(key_parts) > 2 else None
|
||||
entry_name = key_parts[-2]
|
||||
field_name = key_parts[-1]
|
||||
kp_entry = self._kp_org.find_entries(path=path, first=True, name=entry_name)[0]
|
||||
output[k] = kp_entry[field_name]
|
||||
kp_entry = self._kp_org.find_entries(path=path, first=True, title=entry_name)[0]
|
||||
output[k] = kp_entry[field_name] # TODO: TypeError: 'Entry' object is not subscriptable
|
||||
return output
|
||||
|
||||
def save(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue