Skip to content

Commit 0d17237

Browse files
committed
Fix wrong variable name
Fix a wrong variable name that causes errors when a configuration file was manually specified.
1 parent d067654 commit 0d17237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qubes-keepass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def load(path: str = None) -> Config:
443443
Config
444444
'''
445445
if path is not None:
446-
config_path = Path(path)
446+
config_file = Path(path)
447447

448448
else:
449449

0 commit comments

Comments
 (0)