Skip to content

Commit a251de5

Browse files
Make sure newly added backport entry is sorted at the end of the section.
* tools/dist/backport/status.py: (StatusFile.insert): As above git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1924263 13f79535-47bb-0310-9956-ffa450edef68
1 parent 33a7886 commit a251de5

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

tools/dist/backport/status.py

+16-11
Original file line numberDiff line numberDiff line change
@@ -244,20 +244,25 @@ def insert(self, entry, containing_section):
244244

245245
# Find an existing section header to insert the new entry
246246
i = 0
247+
correct_header = False
247248
while i < len(self.paragraphs):
248-
if self.paragraphs[i].kind is Kind.section_header \
249-
and self.paragraphs[i]._containing_section == containing_section:
250-
self.paragraphs.insert(i+1, p)
251-
return
249+
if self.paragraphs[i].kind is Kind.section_header:
250+
if self.paragraphs[i]._containing_section == containing_section:
251+
correct_header = True
252+
elif correct_header:
253+
self.paragraphs.insert(i, p)
254+
correct_header = False
255+
return
252256
i += 1
253257

254-
# None found so we need to append a new header followed by the new entry
255-
self.paragraphs.append(Paragraph(Kind.section_header,
256-
containing_section + ":\n" \
257-
+ '=' * (len(containing_section)+1) + "\n",
258-
None,
259-
containing_section)
260-
)
258+
if not correct_header:
259+
# None found so we need to append a new header followed by the new entry
260+
self.paragraphs.append(Paragraph(Kind.section_header,
261+
containing_section + ":\n" \
262+
+ '=' * (len(containing_section)+1) + "\n",
263+
None,
264+
containing_section)
265+
)
261266
self.paragraphs.append(p)
262267

263268
def remove(self, entry):

0 commit comments

Comments
 (0)