Skip to content

Commit 1890126

Browse files
committed
Fixing logic when trying to parse changelogs in official releases (on About->Changelog)
1 parent a198f5f commit 1890126

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/windows/about.py

+2
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ def __init__(self):
289289
'date': line[9:20].strip(),
290290
'author': line[20:45].strip(),
291291
'subject': line[45:].strip() })
292+
break
292293
except:
293294
# Ignore decoding errors
294295
pass
@@ -309,6 +310,7 @@ def __init__(self):
309310
'date': line[9:20].strip(),
310311
'author': line[20:45].strip(),
311312
'subject': line[45:].strip() })
313+
break
312314
except:
313315
# Ignore decoding errors
314316
pass

0 commit comments

Comments
 (0)