mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-05-27 22:01:05 +03:00
19 lines
395 B
Python
Executable File
19 lines
395 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""
|
|
Outputs the body of the first entry of changelog file on stdin
|
|
"""
|
|
|
|
import re
|
|
import sys
|
|
|
|
found_first_header = False
|
|
for line in sys.stdin:
|
|
line = line.strip()
|
|
if re.match(r"^Changes in \[.*\]", line):
|
|
if found_first_header:
|
|
break
|
|
found_first_header = True
|
|
elif not re.match(r"^=+$", line) and len(line) > 0:
|
|
print line
|