mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-17 02:47:48 +00:00
Scripts: Add a documentation comment in changelog_generator.py
This commit is contained in:
parent
458bebf598
commit
1fdd6fbb14
@ -4,6 +4,12 @@ import sys
|
||||
import fileinput
|
||||
import re
|
||||
|
||||
# Handles the following formats:
|
||||
#
|
||||
# <commit message> -> goes in Misc category
|
||||
# <Category>: <commit message> -> Goes in <Category>
|
||||
# <Category>/<Tag>: <commit message> -> Goes in <Category>/<Tag>
|
||||
|
||||
Meta = { }
|
||||
for line in sys.stdin.readlines():
|
||||
if detailed := re.findall("^([A-Za-z0-9]+)/([A-Za-z0-9]+):(.+)$", line):
|
||||
|
Loading…
Reference in New Issue
Block a user