Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
loomanw committed May 3, 2020
1 parent a1c4724 commit 33bc1a5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions KeePassLibrary/KeePassLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# from pykeepass import entry
# from pykeepass import group

__version__ = '0.2.3'
__version__ = '0.2.4'

class KeePassLibrary(object):

Expand Down Expand Up @@ -56,7 +56,7 @@ def load_database(self, filename, password=None, keyfile=None,
"""Loads the specified KeePass database ``filename`` using the credentials provided.
The ``filename`` argument specifies the location of the KeePass database
Optional ``password`` is
Optional ``keyfile`` specifies the location of the keyfile
Optional ``keyfile`` specifies the location of the keyfile
Expand All @@ -75,7 +75,7 @@ def load_database(self, filename, password=None, keyfile=None,
transformed_key=transformed_key
)

"""
"""
| =Parameter= | =Description= |
| ``filename`` | specifies the path of the KaaPass database |
| ``keyfile`` | specifies the path of the keyfile |
Expand All @@ -92,7 +92,7 @@ def load_database(self, filename, password=None, keyfile=None,
password=password,
keyfile=keyfile,
transformed_key=transformed_key)


# TODO: Add more documentation
def close_database(self):
"""Closes the currently open database.
Expand Down Expand Up @@ -226,7 +226,7 @@ def get_entries_by_username(self, username, regex=False, flags=None,
if self._kp is None:
raise KeepassLibraryError('No KeePass Database loaded.')
else:
return self._kp.find_entries_by_username(username,
return self._kp.find_entries_by_username(username,
regex,
flags,
group,
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ See https://keepass.info for more information about KeePass in general

---
### Versions:
- `0.2.4` Update dependencies
- `0.2.3` Update dependencies, new travis builds
- `0.2.2` Update dependencies
- `0.2.1` KDBX v3 and v4 test cases
Expand Down

0 comments on commit 33bc1a5

Please sign in to comment.