Show More
@@ -811,6 +811,16 class queue: | |||
|
811 | 811 | message, comments, user, date, patchfound = self.readheaders(patch) |
|
812 | 812 | |
|
813 | 813 | patchf = self.opener(patch, "w") |
|
814 | msg = msg.rstrip() | |
|
815 | if msg: | |
|
816 | if comments: | |
|
817 | # Remove existing message. | |
|
818 | ci = 0 | |
|
819 | for mi in range(len(message)): | |
|
820 | while message[mi] != comments[ci]: | |
|
821 | ci += 1 | |
|
822 | del comments[ci] | |
|
823 | comments.append(msg) | |
|
814 | 824 | if comments: |
|
815 | 825 | comments = "\n".join(comments) + '\n\n' |
|
816 | 826 | patchf.write(comments) |
General Comments 0
You need to be logged in to leave comments.
Login now