changelog: Changelog for 0.3.5.17

Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
David Goulet
2021-10-25 10:43:33 -04:00
parent c0c3400499
commit 5aa7bd4308
7 changed files with 79 additions and 25 deletions
+5 -5
View File
@@ -43,7 +43,7 @@ REPLACEMENTS = {
def score(s,fname=None):
m = re.match(r'^ +o ([^\n]*)\n(.*)', s, re.M|re.S)
if not m:
print >>sys.stderr, "Can't score %r from %s"%(s,fname)
print("Can't score %r from %s"%(s,fname))
heading = m.group(1)
heading = REPLACEMENTS.get(heading, heading)
lw = m.group(1).lower()
@@ -100,9 +100,9 @@ changes.sort()
last_lw = "this is not a header"
for _, lw, header, rest in changes:
if lw == last_lw:
print rest,
print(rest)
else:
print
print " o",header
print rest,
print("")
print(" o %s" % (header))
print(rest),
last_lw = lw