Skip to content

Commit

Permalink
Fix version to 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
viczem committed Feb 9, 2023
1 parent 8259d85 commit dd97f8a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: viczem
name: keepass

# The version of the collection. Must be compatible with semantic versioning
version: 0.7.3
version: 0.7.4

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion plugins/lookup/keepass.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
DOCUMENTATION = """
lookup: keepass
author: Victor Zemtsov <[email protected]>
version_added: '0.7.3'
version_added: '0.7.4'
short_description: Fetching data from KeePass file
description:
- This lookup returns a value of a property of a KeePass entry
Expand Down
5 changes: 4 additions & 1 deletion plugins/modules/attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ def check_file_attrs(module, result, diff):
def export_attachment(module, result):
try:
# load database
kp = PyKeePass(module.params["database"], password=module.params["password"], keyfile=module.params["keyfile"])
kp = PyKeePass(
module.params["database"],
password=module.params["password"],
keyfile=module.params["keyfile"])

entrypath = module.params["entrypath"]
dest = module.params["dest"]
Expand Down

0 comments on commit dd97f8a

Please sign in to comment.