Skip to content

Commit d4f0db1

Browse files
authored
fix: correct log default mapping file
1 parent fe72088 commit d4f0db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

passgithelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def parse(mapping_file: IO) -> configparser.ConfigParser:
103103
"Please create {config_file}".format(config_file=DEFAULT_CONFIG_FILE)
104104
)
105105
default_file = Path(xdg_config_dir) / CONFIG_FILE_NAME
106-
LOGGER.debug("Parsing mapping file %s", mapping_file)
106+
LOGGER.debug("Parsing mapping file %s", default_file)
107107
with default_file.open("r") as file_handle:
108108
return parse(file_handle)
109109

0 commit comments

Comments
 (0)