Skip to content

Commit 34fab2b

Browse files
authored
Merge pull request #3237 from OpenShot/fix-changelog-listing
Fixing logic when trying to parse changelogs in official releases
2 parents 5c1bb2c + 1890126 commit 34fab2b

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)