You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
18 lines
396 B
#!/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)
|
|
|