Merge pull request #2281 from DimStar77/issue2278
build-fail-reminder: Fix indentation of emails
This commit is contained in:
commit
3d0d731212
@ -200,24 +200,24 @@ def main(args):
|
|||||||
|
|
||||||
text = u"""Dear Package maintainers and hackers.
|
text = u"""Dear Package maintainers and hackers.
|
||||||
|
|
||||||
Below package(s) in %(project)s have been failing to build for at
|
Below package(s) in %(project)s have been failing to build for at
|
||||||
least 4 weeks. We tried to send out notifications to the
|
least 4 weeks. We tried to send out notifications to the
|
||||||
configured bugowner/maintainers of the package(s), but so far no
|
configured bugowner/maintainers of the package(s), but so far no
|
||||||
fix has been submitted. This probably means that the
|
fix has been submitted. This probably means that the
|
||||||
maintainer/bugowner did not yet find the time to look into the
|
maintainer/bugowner did not yet find the time to look into the
|
||||||
matter and he/she would certainly appreciate help to get this
|
matter and he/she would certainly appreciate help to get this
|
||||||
sorted.
|
sorted.
|
||||||
|
|
||||||
""" % { 'project': project }
|
""" % { 'project': project }
|
||||||
for pkg in ProjectComplainList:
|
for pkg in ProjectComplainList:
|
||||||
text += "- %s\n" % pkg
|
text += "- %s\n" % pkg
|
||||||
text += u"""
|
text += u"""
|
||||||
Unless somebody is stepping up and submitting fixes, the listed
|
Unless somebody is stepping up and submitting fixes, the listed
|
||||||
package(s) are going to be removed from %(project)s.
|
package(s) are going to be removed from %(project)s.
|
||||||
|
|
||||||
Kind regards,
|
Kind regards,
|
||||||
%(sender)s
|
%(sender)s
|
||||||
""" % { 'project': project, 'sender': sender }
|
""" % { 'project': project, 'sender': sender }
|
||||||
SendMail(logger, project, sender, to, fullname, subject, text)
|
SendMail(logger, project, sender, to, fullname, subject, text)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user