Skip to content

Commit dd97f8a

Browse files
committed
Fix version to 0.7.4
1 parent 8259d85 commit dd97f8a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace: viczem
88
name: keepass
99

1010
# The version of the collection. Must be compatible with semantic versioning
11-
version: 0.7.3
11+
version: 0.7.4
1212

1313
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1414
readme: README.md

plugins/lookup/keepass.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DOCUMENTATION = """
2323
lookup: keepass
2424
author: Victor Zemtsov <[email protected]>
25-
version_added: '0.7.3'
25+
version_added: '0.7.4'
2626
short_description: Fetching data from KeePass file
2727
description:
2828
- This lookup returns a value of a property of a KeePass entry

plugins/modules/attachment.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ def check_file_attrs(module, result, diff):
110110
def export_attachment(module, result):
111111
try:
112112
# load database
113-
kp = PyKeePass(module.params["database"], password=module.params["password"], keyfile=module.params["keyfile"])
113+
kp = PyKeePass(
114+
module.params["database"],
115+
password=module.params["password"],
116+
keyfile=module.params["keyfile"])
114117

115118
entrypath = module.params["entrypath"]
116119
dest = module.params["dest"]

0 commit comments

Comments
 (0)