mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
changelog: Changelog for 0.3.5.17
Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user