Skip to content

Commit 2acac8d

Browse files
authored
Fix debug log for changelog parsing
1 parent 1fa16b2 commit 2acac8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/about.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def parse_new_changelog(changelog_path):
7777
matches = re.findall(
7878
r"^-\s?([0-9a-f]{40})\s(\d{4,4}-\d{2,2}-\d{2,2})\s(.*)\s\[(.*)\]\s*$",
7979
changelog_file.read(), re.MULTILINE)
80-
log.debug("Parsed {} changelog lines from {}".format(len(matches), changelog_file))
80+
log.debug("Parsed {} changelog lines from {}".format(len(matches), changelog_path))
8181
changelog_list = [{
8282
"hash": entry[0],
8383
"date": entry[1],

0 commit comments

Comments
 (0)